summaryrefslogtreecommitdiff
path: root/ishtar_common/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r--ishtar_common/urls.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py
index ffa8daebf..60a2d8767 100644
--- a/ishtar_common/urls.py
+++ b/ishtar_common/urls.py
@@ -575,6 +575,20 @@ urlpatterns += [
name="new-documenttag",
),
url(
+ r"geo/create/(?P<app_source>[-\w]+)/(?P<model_source>[-\w]+)/(?P<source_pk>\d+)/$",
+ check_rights(["add_geovectordata", "add_own_geovectordata"])(
+ views.GeoCreateView.as_view()
+ ),
+ name="create-geo",
+ ),
+ url(
+ r"geo/edit/(?P<pk>\d+)/$",
+ check_rights(["change_geovectordata", "change_own_geovectordata"])(
+ views.GeoEditView.as_view()
+ ),
+ name="edit-geo",
+ ),
+ url(
r"^qa-not-available(?:/(?P<context>[0-9a-z-]+))?/$",
views.QANotAvailable.as_view(),
name="qa-not-available",