app/django/contrib/flatpages/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 18 Apr 2009 15:04:24 +0000
changeset 2217 2c6ec0357149
parent 54 03e267d67478
permissions -rw-r--r--
Added FatalJobError to the cron/job module. This Error will lead to abortion of the raising job. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

from django.conf.urls.defaults import *

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