summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorbryan newbold <bnewbold@snark.mit.edu>2009-06-15 17:12:42 -0400
committerbryan newbold <bnewbold@snark.mit.edu>2009-06-15 17:12:42 -0400
commitee1b8ce4f3826c6d7f76a48fdbd0422ea67017bb (patch)
treef94343adf2a5be9840664418149bc1d30a286bad /urls.py
parentf78236c4113d0d4e5019df316125e86a63befd07 (diff)
downloadequator-ee1b8ce4f3826c6d7f76a48fdbd0422ea67017bb.tar.gz
equator-ee1b8ce4f3826c6d7f76a48fdbd0422ea67017bb.zip
more; BROKENappengine
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}),