diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2022-12-18 19:33:56 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2022-12-18 19:33:56 +0000 |
commit | d1b94763b43842e7834062a2ab68978c6d95a95e (patch) | |
tree | 40c35912341c838fe65d8cd4f81d1207b4418e71 /templates/logbook2005style.html | |
parent | 73b710d53f0ea4fb4c1693679732e19a53530d1d (diff) | |
download | troggle-d1b94763b43842e7834062a2ab68978c6d95a95e.tar.gz troggle-d1b94763b43842e7834062a2ab68978c6d95a95e.tar.bz2 troggle-d1b94763b43842e7834062a2ab68978c6d95a95e.zip |
Fixing wiki-parsing for 2009 logbook
Diffstat (limited to 'templates/logbook2005style.html')
-rw-r--r-- | templates/logbook2005style.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/logbook2005style.html b/templates/logbook2005style.html index 5ee94ad..7831175 100644 --- a/templates/logbook2005style.html +++ b/templates/logbook2005style.html @@ -20,11 +20,11 @@ Exported on {% now 'Y-m-d D' %} using control panel webpage and exportlogbook() <hr /> <div class="tripdate" id="{{logbook_entry.slug}}">{{logbook_entry.date|date:'Y-m-d'}}</div> -<div class="trippeople">{% for persontrip in logbook_entry.persontrip_set.all %}{% if persontrip.is_logbook_entry_author %}<u>{{persontrip.personexpedition.person}}</u>{% else %}{{ persontrip.personexpedition.person }}{% endif %}, {% endfor %}</div> -<div class="triptitle">{{logbook_entry.title}}</div> +<div class="trippeople">{% for persontrip in logbook_entry.persontrip_set.all %}{% if persontrip.is_logbook_entry_author %}<u>{{persontrip.personexpedition.person|safe}}</u>{% else %}{{ persontrip.personexpedition.person|safe }}{% endif %}, {% endfor %}</div> +<div class="triptitle">{{logbook_entry.title|safe}}</div> {{logbook_entry.text|safe}} -<div class="timeug">T/U: {{logbook_entry.time_underground}}</div> +<div class="timeug">T/U: {{logbook_entry.time_underground|safe}} hours</div> {% endfor %} <hr /> </body> |