app/django/contrib/flatpages/urls.py
author Daniel Hans <Daniel.M.Hans@gmail.com>
Fri, 30 Oct 2009 22:24:34 +0100
changeset 3069 1b9c554ca96d
parent 54 03e267d67478
permissions -rw-r--r--
Multiple choice nonrequired questions now accept empty answers. The change is mostly concerned with issue 674, probably fixing it.

from django.conf.urls.defaults import *

urlpatterns = patterns('django.contrib.flatpages.views',
    (r'^(?P<url>.*)$', 'flatpage'),
)