/tests/regressiontests/formwizard/urls.py
https://code.google.com/p/mango-py/ · Python · 6 lines · 5 code · 1 blank · 0 comment · 0 complexity · 63fdb833a7a445ac34aa2c965272fb0a MD5 · raw file
- from django.conf.urls.defaults import *
- from forms import ContactWizard, Page1, Page2, Page3
- urlpatterns = patterns('',
- url(r'^wiz/$', ContactWizard([Page1, Page2, Page3])),
- )