from main.models import Arch, Repo, Donor from mirrors.models import MirrorUrl from news.models import News from . import utils from django.conf import settings from django.contrib.auth.models import User from django.http import Http404 from django.shortcuts import redirect from django.views.generic import list_detail from django.views.generic.simple import direct_to_template def index(request): pkgs = utils.get_recent_updates() context = { 'news_updates': News.objects.order_by('-postdate', '-id')[:15], 'pkg_updates': pkgs, } return direct_to_template(request, 'public/index.html', context) USER_LISTS = { 'hackers': { 'user_type': 'Hackers', 'description': "This is a list of the current Parabola Hackers. They maintain the [libre] package repository and keep the [core], [extra] and [community] repositories clean of unfree software, in addition to doing any other developer duties.", }, 'fellows': { 'user_type': 'Fellows', 'description': "Below you can find a list of ex-hackers (aka project fellows). These folks helped make Parabola what it is today. Thanks!", }, } def userlist(request, user_type='hackers'): users = User.objects.order_by('username').select_related('userprofile') if user_type == 'hackers': users = users.filter(is_active=True, groups__name="Hackers") elif user_type == 'fellows': users = users.filter(is_active=False, groups__name__in=["Hackers"]) else: raise Http404 context = USER_LISTS[user_type].copy() context['users'] = users return direct_to_template(request, 'public/userlist.html', context) def donate(request): context = { 'donors': Donor.objects.filter(visible=True).order_by('name'), } return direct_to_template(request, 'public/donate.html', context) def download(request): return redirect('http://wiki.parabolagnulinux.org/get', permanent=True) def feeds(request): context = { 'arches': Arch.objects.all(), 'repos': Repo.objects.all(), } return direct_to_template(request, 'public/feeds.html', context) # vim: set ts=4 sw=4 et: