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

6
lib/ui/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.conf import settings
from django.conf.urls import *
urlpatterns = patterns('lib.ui.views',
url(r'^$', 'index', name='index'),
)