app/django/contrib/flatpages/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 04 Jul 2009 14:22:02 +0200
changeset 2529 3f2484621f1c
parent 54 03e267d67478
permissions -rw-r--r--
Added Daniel Diniz and Zachary Voase to the AUTHORS file.

from django.conf.urls.defaults import *

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