From 8d594a01220d5cbbe9d6e856d1aef04bbb8daf3e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sat, 20 Oct 2012 21:52:43 +0200 Subject: Djangoization - Major refactoring (step 6) Work on wizard, views and forms to dispatch logic in a more relevant way. --- archaeological_warehouse/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archaeological_warehouse/urls.py') diff --git a/archaeological_warehouse/urls.py b/archaeological_warehouse/urls.py index 914ee2533..903d77a59 100644 --- a/archaeological_warehouse/urls.py +++ b/archaeological_warehouse/urls.py @@ -20,14 +20,14 @@ from django.conf.urls.defaults import * """ -import forms +import views # forms urlpatterns = patterns('', url(r'treatment_creation/(?P.+)$', - forms.treatment_creation_wizard, name='treatment_creation'), + views.treatment_creation_wizard, name='treatment_creation'), url(r'warehouse_packaging/(?P.+)$', - forms.warehouse_packaging_wizard, name='warehouse_packaging'), + views.warehouse_packaging_wizard, name='warehouse_packaging'), ) urlpatterns += patterns('archaeological_warehouse.views', -- cgit v1.2.3