app/django/contrib/flatpages/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 24 Feb 2009 19:43:51 +0000
changeset 1484 6b00a2a43eaf
parent 54 03e267d67478
permissions -rw-r--r--
Changed the method and variable name in student_proposal to match the access type. 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'),
)