1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Create your views here. from models import Category, Screenshot from django.shortcuts import render from django.http import Http404 def index(request): c = Category.objects.order_by('-name') return render(request, 'wlscreens/index.html', {'categories': c, } ) def category(request, category_slug): """Not implemented at the moment.""" raise Http404 |