team-3/src/c3nav/control/urls.py

8 lines
146 B
Python
Raw Normal View History

2017-12-08 15:21:33 +01:00
from django.conf.urls import url
2017-12-08 14:48:37 +01:00
2017-12-08 15:21:33 +01:00
from c3nav.control.views import main_index
2017-12-08 14:48:37 +01:00
urlpatterns = [
2017-12-08 15:21:33 +01:00
url(r'^$', main_index, name='control.index'),
2017-12-08 14:48:37 +01:00
]