app/django/contrib/flatpages/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 14 Apr 2009 18:44:06 +0000
changeset 2183 4e036dcc79ba
parent 54 03e267d67478
permissions -rw-r--r--
Added additional_mentors property to StudentProject. As per request by Issue 588. 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'),
)