OpenSlides/openslides/motions/urls.py

10 lines
188 B
Python
Raw Normal View History

from django.conf.urls import url
2012-10-24 11:04:23 +02:00
2014-12-25 10:58:52 +01:00
from . import views
urlpatterns = [
2016-09-13 11:54:30 +02:00
url(r'^docxtemplate/$',
views.MotionDocxTemplateView.as_view(),
name='motions_docx_template'),
]