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

7 lines
189 B
Python
Raw Normal View History

2016-08-31 17:14:31 +02:00
from django.conf.urls import url
from django.views.generic import TemplateView
2016-08-31 17:14:31 +02:00
urlpatterns = [
url(r'^$', TemplateView.as_view(template_name='editor/map.html'), name='editor.index')
2016-08-31 17:14:31 +02:00
]