app/django/contrib/flatpages/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 04 Feb 2009 22:52:33 +0000
changeset 1212 1b64b5922227
parent 54 03e267d67478
permissions -rw-r--r--
Added jquery thickbox, ajaxQueue, autocomplete and bgiframe Also added the soc-specific stylesheets for jquery and thickbox. Patch by: "Mario Ferraro" <fadinlight@gmail.com>

from django.conf.urls.defaults import *

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