app/django/contrib/flatpages/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 03 Apr 2009 17:19:46 +0000
changeset 2068 f5e8fbbd3bea
parent 54 03e267d67478
permissions -rw-r--r--
Style fixes and removal of unused imports in soc.logic.helper modules. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.conf.urls.defaults import *

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