-# -*- coding: utf-8
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from django.conf.urls import url
from . import views
url(r'^pubmark/(?P<chunk_id>\d+)/$', views.pubmark, name="wiki_pubmark"),
url(r'^themes$', views.themes, name="themes"),
+
+ url(r'^back/$', views.back),
+ url(r'^editor-user-area/$', views.editor_user_area),
]