From 2314373756ab68058e906a6459de3156b72c6f26 Mon Sep 17 00:00:00 2001 From: substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> Date: Wed, 13 May 2009 06:14:08 +0100 Subject: [PATCH] [svn] I worked on the trip_report view for a while before realizing it would be easier to just customize the LogbookEntry admin view to achieve the same effect. I never meant to commit it, but it snuck in to the urls.py Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8315 by aaron @ 3/30/2009 7:50 AM --- urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urls.py b/urls.py index f296a58..e0d2dd9 100644 --- a/urls.py +++ b/urls.py @@ -82,5 +82,5 @@ urlpatterns = patterns('', (r'^photos/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.PHOTOS_ROOT, 'show_indexes':True}), - url(r'^trip_report/?$',views_other.tripreport,name="trip_report") + #url(r'^trip_report/?$',views_other.tripreport,name="trip_report") )