1
# Create your views here.
3
from models import Category, Screenshot
4
from django.shortcuts import render
5
from django.http import Http404
9
c = Category.objects.order_by('-name')
11
return render(request, 'wlscreens/index.html',
16
def category(request, category_slug):
17
"""Not implemented at the moment."""