app/django/contrib/flatpages/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 12 May 2009 13:02:10 +0200
changeset 2307 81c128f487e6
parent 54 03e267d67478
permissions -rw-r--r--
Fix ordering of names in AUTHORS file.

from django.conf.urls.defaults import *

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