app/django/contrib/flatpages/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 18 Nov 2008 21:17:53 +0000
changeset 504 25156c768e7f
parent 54 03e267d67478
permissions -rw-r--r--
Fix not working request creation. Patch by: Pawel Solyga

from django.conf.urls.defaults import *

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