app/django/contrib/flatpages/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 29 Aug 2009 14:33:48 -0700 (2009-08-29)
changeset 2851 792e2c58dc62
parent 54 03e267d67478
permissions -rw-r--r--
Store queries in memcache
from django.conf.urls.defaults import *

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