First version, grabs recently added movies/tvshows

This commit is contained in:
2013-11-09 17:09:52 +00:00
parent e62e450a10
commit 171538856a
313 changed files with 71922 additions and 0 deletions

6
webui/views.py Normal file
View File

@@ -0,0 +1,6 @@
from django.http import HttpResponse, Http404
from django.template import Context, loader
from django.shortcuts import render, get_object_or_404
def home(request):
return render(request, 'home.html')