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