diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-01 19:09:57 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-01 19:09:57 +0300 |
commit | 9380f751b20f5a8ce024ff87f1ed5a1b751a2f7d (patch) | |
tree | 381c27ede8aa95aa1eefb0c18e1b591457b05447 /templates/logbook2005style.html | |
parent | e209a9bb375762ce1ad14e231d0719358c3336ec (diff) | |
download | troggle-9380f751b20f5a8ce024ff87f1ed5a1b751a2f7d.tar.gz troggle-9380f751b20f5a8ce024ff87f1ed5a1b751a2f7d.tar.bz2 troggle-9380f751b20f5a8ce024ff87f1ed5a1b751a2f7d.zip |
Inelegances fixes
Diffstat (limited to 'templates/logbook2005style.html')
-rw-r--r-- | templates/logbook2005style.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/logbook2005style.html b/templates/logbook2005style.html index 051cbee..cca877c 100644 --- a/templates/logbook2005style.html +++ b/templates/logbook2005style.html @@ -23,8 +23,10 @@ See troggle/code/views/other.py and core.models/logbooks.py writelogbook(year, f <div class="tripdate" id="{{logbook_entry.slug}}">{{logbook_entry.date|date:'Y-m-d'}}</div> <div class="trippeople">{% for personlogentry in logbook_entry.personlogentry_set.all %}{% if personlogentry.is_logbook_entry_author %}<u>{{personlogentry.personexpedition.person|safe}}</u>{% else %}{{ personlogentry.personexpedition.person|safe }}{% endif %}, {% endfor %}</div> -<div class="triptitle"><a href="/logbookedit/{{logbook_entry.slug}}">{{logbook_entry.title|safe}}</a></div> - +<div class="triptitle">{{logbook_entry.title|safe}}</div> +<br /> +<a href="/logbookedit/{{logbook_entry.slug}}">Edit this entry</a> +<br /> {{logbook_entry.text|safe}} <div class="timeug">T/U: {{logbook_entry.time_underground|safe}} hours</div> {% endfor %} |