added datacenterlight

This commit is contained in:
Levi 2016-12-20 18:05:20 -05:00
commit abfab6915c
88 changed files with 15933 additions and 0 deletions

8
datacenterlight/urls.py Normal file
View file

@ -0,0 +1,8 @@
from django.conf.urls import url
from .views import IndexView
urlpatterns = [
url(r'^/?$', IndexView.as_view(), name='index'),
]