Moved UI into its own Django app.

This commit is contained in:
Chris Church
2013-05-08 11:41:00 -04:00
parent 839d681b70
commit eff2e65c9a
170 changed files with 88490 additions and 0 deletions

12
lib/ui/views.py Normal file
View File

@@ -0,0 +1,12 @@
from django.views.generic.base import TemplateView
class IndexView(TemplateView):
template_name = 'ui/index.html'
def get_context_data(self, **kwargs):
context = super(IndexView, self).get_context_data(**kwargs)
# Add any additional context info here.
return context
index = IndexView.as_view()