Fixlet to the list of ignored files
[webcomics.git] / urls.py
CommitLineData
428a4f11
JB
1from django.conf.urls.defaults import patterns, include, url
2
3# Uncomment the next two lines to enable the admin:
298255d2
JB
4from django.contrib import admin
5admin.autodiscover()
428a4f11
JB
6
7urlpatterns = patterns('',
8 # Examples:
d243a81e
JB
9 # url(r'^$', 'django.views.home', name='home'),
10 # url(r'^django/', include('django.foo.urls')),
428a4f11
JB
11
12 # Uncomment the admin/doc line below to enable admin documentation:
d243a81e 13 url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
428a4f11
JB
14
15 # Uncomment the next line to enable the admin:
d243a81e 16 url(r'^admin/', include(admin.site.urls)),
428a4f11 17)