app/django/contrib/formtools/test_urls.py
author Todd Larsen <tlarsen@google.com>
Sat, 18 Oct 2008 04:56:39 +0000
changeset 376 ce8b3a9fa0de
parent 54 03e267d67478
permissions -rw-r--r--
Add a style that appears in form error lists produced by Django Forms and make it match the style of the existing td.formfielderror used by the field_as_table_row helper. Patch by: Todd Larsen Review by: to-be-reviewed

"""

This is a urlconf to be loaded by tests.py. Add any urls needed
for tests only.

"""
from django.conf.urls.defaults import *
from django.contrib.formtools.tests import *

urlpatterns = patterns('',
                       (r'^test1/', TestFormPreview(TestForm)),
                      )