/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

  1. from django.conf.urls.defaults import *
  2. from forms import ContactWizard, Page1, Page2, Page3
  3. urlpatterns = patterns('',
  4. url(r'^wiz/$', ContactWizard([Page1, Page2, Page3])),
  5. )