diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-09 20:22:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:39:42 +0200 |
commit | 478bef4100f4b18553a74e79fbacc2ffec695d7c (patch) | |
tree | 26d66e9387005a4e7b047b1bd9a2a6542856076d /ishtar_common/urls.py | |
parent | eada3318b5244c9556314f1f68012260e7b95d22 (diff) | |
download | Ishtar-478bef4100f4b18553a74e79fbacc2ffec695d7c.tar.bz2 Ishtar-478bef4100f4b18553a74e79fbacc2ffec695d7c.zip |
Add a profile page to manage preferences (refs #4046)
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 538041b82..04d6acfb2 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -122,6 +122,7 @@ urlpatterns = [ kwargs={'all_pages': True}), url(r'^import-step-by-step/(?P<pk>[0-9]+)/(?P<line_number>[0-9]+)/$', views.ImportStepByStepView.as_view(), name='import_step_by_step'), + url(r'^profile/', views.ProfileEdit.as_view(), name='profile'), ] actions = [] |