diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:56:56 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:56:56 +0100 |
commit | 4b34241a16af5e9cbfff0c3b2ede76394e94a3b5 (patch) | |
tree | 35eb3ddd5d40401e5149036c06a31620bd7a9417 /templates/logbookentry.html | |
parent | e9cc5094b90b605fca115835294999fba5e79aac (diff) | |
download | troggle-4b34241a16af5e9cbfff0c3b2ede76394e94a3b5.tar.gz troggle-4b34241a16af5e9cbfff0c3b2ede76394e94a3b5.tar.bz2 troggle-4b34241a16af5e9cbfff0c3b2ede76394e94a3b5.zip |
[svn] Added new abstract base class TroggleModel. Any fields or methods that need to be added to multiple models should be added here.
Added edit links to caves, people, logbook entries, and people.
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8260 by aaron @ 2/26/2009 5:28 AM
Diffstat (limited to 'templates/logbookentry.html')
-rw-r--r-- | templates/logbookentry.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/logbookentry.html b/templates/logbookentry.html index 2bfb564..690d21c 100644 --- a/templates/logbookentry.html +++ b/templates/logbookentry.html @@ -2,7 +2,7 @@ {% load wiki_markup %}
{% block title %}Logbook {{logbookentry.id}}{% endblock %}
-
+{% block editLink %}<a href={{logbookentry.get_admin_url}}>Edit logbook entry {{logbookentry|wiki_to_html_short}}</a>{% endblock %}
{% block content %}
<h2>{{logbookentry.title|safe}}</h2>
|