Move and rename a lot of stuff into kaehmy app

This commit is contained in:
Jan Tuomi
2018-01-26 01:15:35 +02:00
parent 06c2a2b9a6
commit f0ea3505e4
36 changed files with 640 additions and 439 deletions
+21
View File
@@ -0,0 +1,21 @@
"""Kaehmy urls."""
from django.conf.urls import url
# from django.utils.translation import ugettext_lazy as _
from kaehmy.views import view
from kaehmy.views import list_view
from kaehmy.views import submit
from kaehmy.views import comment
from kaehmy.views import statistics_view
from kaehmy.views import export_view
urlpatterns = [
# kaehmy
url(r'^new', view),
url(r'^submit', submit),
url(r'^add_comment', comment),
url(r'^statistics', statistics_view),
url(r'^export', export_view),
url(r'^$', list_view),
]