diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-12-01 19:55:46 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-12-01 19:55:46 +0100 |
commit | 891931ee067d357951b91777b403662e25af1e5b (patch) | |
tree | 1c744f40ed15b7b6e7a1521a220153eda45ed5f6 /archaeological_files_pdl/urls.py | |
parent | 294f9e1102d25d53ed45d0b850286eeb986e5963 (diff) | |
download | Ishtar-891931ee067d357951b91777b403662e25af1e5b.tar.bz2 Ishtar-891931ee067d357951b91777b403662e25af1e5b.zip |
Fix administrativ act modification
Diffstat (limited to 'archaeological_files_pdl/urls.py')
-rw-r--r-- | archaeological_files_pdl/urls.py | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/archaeological_files_pdl/urls.py b/archaeological_files_pdl/urls.py index 4cd746e8a..34646e8ad 100644 --- a/archaeological_files_pdl/urls.py +++ b/archaeological_files_pdl/urls.py @@ -21,15 +21,16 @@ from django.conf.urls.defaults import * from archaeological_files_pdl import views -urlpatterns = patterns('', - url(r'file_creation/(?P<step>.+)?$', - views.file_creation_wizard, name='file_creation'), - url(r'file_modification/(?P<step>.+)?$', - views.file_modification_wizard, name='file_modification'), - url(r'townplanning-edit/$', - views.TownPlanningCreate.as_view(), - name='townplanning_create'), - url(r'townplanning-edit/(?P<pk>\d+)$', - views.TownPlanningEdit.as_view(), - name='townplanning_edit'), +urlpatterns = patterns( + '', + url(r'file_creation/(?P<step>.+)?$', + views.file_creation_wizard, name='file_creation'), + url(r'file_modification/(?P<step>.+)?$', + views.file_modification_wizard, name='file_modification'), + url(r'townplanning-edit/$', + views.TownPlanningCreate.as_view(), + name='townplanning_create'), + url(r'townplanning-edit/(?P<pk>\d+)$', + views.TownPlanningEdit.as_view(), + name='townplanning_edit'), ) |