[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

This commit is contained in:
aaron 2009-03-30 09:50:56 +02:00
parent c9d1b31207
commit 5876ccd5fc

View File

@ -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")
)