diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 20:41:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 20:41:41 +0200 |
commit | 7ccc29e5c41fe8a4a33c803adc4bbbd94d6ad1d7 (patch) | |
tree | 3e8a369eb94465c8ae02201a613f9ca32aeaf741 /archaeological_finds/urls.py | |
parent | dac23f0753d81396aed54a2297195af416e03a6f (diff) | |
download | Ishtar-7ccc29e5c41fe8a4a33c803adc4bbbd94d6ad1d7.tar.bz2 Ishtar-7ccc29e5c41fe8a4a33c803adc4bbbd94d6ad1d7.zip |
Djangoization - Major refactoring (step 12)
* Fix finds wizards
Diffstat (limited to 'archaeological_finds/urls.py')
-rw-r--r-- | archaeological_finds/urls.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py index e4a7d748f..3d45eb106 100644 --- a/archaeological_finds/urls.py +++ b/archaeological_finds/urls.py @@ -23,21 +23,21 @@ import views # forms urlpatterns = patterns('', - url(r'item_search/(?P<step>.+)?$', - views.item_search_wizard, name='item_search'), - url(r'item_creation/(?P<step>.+)?$', - views.item_creation_wizard, name='item_creation'), - url(r'item_modification/(?P<step>.+)?$', - views.item_modification_wizard, name='item_modification'), - url(r'item_source_creation/(?P<step>.+)?$', - views.item_source_creation_wizard, - name='item_source_creation'), - url(r'item_source_modification/(?P<step>.+)?$', - views.item_source_modification_wizard, - name='item_source_modification'), - url(r'item_source_deletion/(?P<step>.+)?$', - views.item_source_deletion_wizard, - name='item_source_deletion'), + url(r'find_search/(?P<step>.+)?$', + views.find_search_wizard, name='find_search'), + url(r'find_creation/(?P<step>.+)?$', + views.find_creation_wizard, name='find_creation'), + url(r'find_modification/(?P<step>.+)?$', + views.find_modification_wizard, name='find_modification'), + url(r'find_source_creation/(?P<step>.+)?$', + views.find_source_creation_wizard, + name='find_source_creation'), + url(r'find_source_modification/(?P<step>.+)?$', + views.find_source_modification_wizard, + name='find_source_modification'), + url(r'find_source_deletion/(?P<step>.+)?$', + views.find_source_deletion_wizard, + name='find_source_deletion'), ) urlpatterns += patterns('archaeological_finds.views', |