This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
2010-09-17 17:14:10 +02:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
2010-09-18 17:20:50 +02:00
|
|
|
from django.contrib import admin
|
|
|
|
admin.autodiscover()
|
2010-09-17 17:14:10 +02:00
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
# Example:
|
|
|
|
# (r'^web/', include('web.foo.urls')),
|
|
|
|
|
|
|
|
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
|
|
|
|
# to INSTALLED_APPS to enable admin documentation:
|
|
|
|
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
|
|
|
|
|
|
# Uncomment the next line to enable the admin:
|
2010-09-18 17:20:50 +02:00
|
|
|
(r'^admin/', include(admin.site.urls)),
|
2010-09-17 17:14:10 +02:00
|
|
|
)
|