10 lines
251 B
Python
10 lines
251 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
# from django.contrib import admin
|
|
# admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', 'contentstore.views.index', name='index'),
|
|
)
|