1
from django.conf.urls.defaults import *
2
3
urlpatterns = patterns('django.contrib.flatpages.views',
4
(r'^(?P<url>.*)$', 'flatpage'),
5
)