1
# Create your views here.
3
from models import Category, Screenshot
4
from django.shortcuts import render_to_response
5
from django.template import RequestContext
8
c = Category.objects.all()
10
return render_to_response( "wlscreens/index.html",
12
RequestContext(request) )
14
def category(request, category_slug):