app/django/contrib/flatpages/urls.py
author Todd Larsen <tlarsen@google.com>
Mon, 04 Aug 2008 22:09:35 +0000
changeset 62 1627b79c396a
parent 54 03e267d67478
permissions -rw-r--r--
Finish moving the remaining "prototype" app pieces out of apps/proto, and then remove trunk/apps. There is still some editing to do in the newly-relocated files (now in trunk/app/soc and trunk/app/ghop).

from django.conf.urls.defaults import *

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