fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
User pipeline's SASS compiler because of issue with BOM. Fixes #4239.
[redakcja.git]
/
src
/
wiki
/
urls.py
diff --git
a/src/wiki/urls.py
b/src/wiki/urls.py
index
eb70ffe
..
f1a4508
100644
(file)
--- a/
src/wiki/urls.py
+++ b/
src/wiki/urls.py
@@
-1,4
+1,6
@@
-# -*- 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
from django.conf.urls import url
from . import views
@@
-29,4
+31,7
@@
urlpatterns = [
url(r'^pubmark/(?P<chunk_id>\d+)/$', views.pubmark, name="wiki_pubmark"),
url(r'^themes$', views.themes, name="themes"),
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),
]
]