app/django/contrib/flatpages/urls.py
author Dan Bentley <dbentley@google.com>
Mon, 25 May 2009 16:23:16 -0700
changeset 2351 73448b71aa07
parent 54 03e267d67478
permissions -rw-r--r--
Add Organization Application seeding. Fix the seeding in seed_db so that a consistent linkid for organization applications is used. Use the last entry in the split array instead of the 2nd.

from django.conf.urls.defaults import *

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