From 5876ccd5fca06eb67874d15a3cde2267c44b641c Mon Sep 17 00:00:00 2001 From: aaron <devnull@localhost> Date: Mon, 30 Mar 2009 09:50:56 +0200 Subject: [PATCH] [svn r8315] 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 --- troggle/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/troggle/urls.py b/troggle/urls.py index f296a5885..e0d2dd91b 100644 --- a/troggle/urls.py +++ b/troggle/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") )