summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 3a6829a..f839bcd 100644
--- a/urls.py
+++ b/urls.py
@@ -10,7 +10,9 @@ urlpatterns = patterns('',
{'template': 'index.html'}),
(r'^go/', 'django.views.generic.simple.direct_to_template',
{'template': 'go.html'}),
- (r'^admin/doc/', include('django.contrib.admindocs.urls')),
+ (r'^about/', 'django.views.generic.simple.direct_to_template',
+ {'template': 'about.html'}),
+ #(r'^admin/doc/', include('django.contrib.admindocs.urls')),
#(r'^admin/(.*)', admin.site.root),
(r'^static/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT}),