diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-04-08 14:50:16 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-04-08 14:50:16 +0200 |
commit | 68b6e055ea7c2f3fbfcdbce574bdd8029b93b9bc (patch) | |
tree | c463a7913753c14957fb3972afee5c08ff2b17c1 /ishtar_common/urls.py | |
parent | aef9d6a5a9ce699e1fdf751d86f052e3d7dbdbde (diff) | |
download | Ishtar-68b6e055ea7c2f3fbfcdbce574bdd8029b93b9bc.tar.bz2 Ishtar-68b6e055ea7c2f3fbfcdbce574bdd8029b93b9bc.zip |
Modify a person from his sheet
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 036494354..a3bcaffb5 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -43,6 +43,8 @@ urlpatterns = patterns( url(r'person_modification/(?P<step>.+)?$', check_rights(['change_person', 'change_own_person'])( views.person_modification_wizard), name='person_modification'), + url(r'person_modify/(?P<pk>.+)/$', views.person_modify, + name='person_modify'), url(r'person_deletion/(?P<step>.+)?$', check_rights(['change_person', 'change_own_person'])( views.person_deletion_wizard), name='person_deletion'), |