app/django/contrib/flatpages/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 05 Dec 2008 12:24:02 +0000
changeset 664 fb4c825b24ab
parent 54 03e267d67478
permissions -rw-r--r--
Some style fixes in soc.logic.helper.notifications module. Little changes in welcome.html template. Patch by: Pawel Solyga

from django.conf.urls.defaults import *

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