diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2022-12-17 03:02:08 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2022-12-17 03:02:08 +0000 |
commit | 0a4471e039ce756d207d24733e0095352d32febb (patch) | |
tree | de2b7d5dffbb0d6dc207d28ef84bd9a394412500 /templates/logbook2005style.html | |
parent | f80e4efed8b6a329a7c92b9e0c68bb12faa9b517 (diff) | |
download | troggle-0a4471e039ce756d207d24733e0095352d32febb.tar.gz troggle-0a4471e039ce756d207d24733e0095352d32febb.tar.bz2 troggle-0a4471e039ce756d207d24733e0095352d32febb.zip |
Fixed round-trip import-export-import bugs
Diffstat (limited to 'templates/logbook2005style.html')
-rw-r--r-- | templates/logbook2005style.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/logbook2005style.html b/templates/logbook2005style.html index 2e4fbad..5ee94ad 100644 --- a/templates/logbook2005style.html +++ b/templates/logbook2005style.html @@ -10,6 +10,9 @@ parser. This is because we are steadily converting old formats to a new common format so that we do not need to maintain half a dozen parser functions. +Sorry about all the crap that surrounds the image tags which has been imported along with the content +when UK Caving blogs have been parsed. + Exported on {% now 'Y-m-d D' %} using control panel webpage and exportlogbook() in troggle/code/views/other.py --> <body> @@ -18,7 +21,7 @@ Exported on {% now 'Y-m-d D' %} using control panel webpage and exportlogbook() <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.place}} - {{logbook_entry.title}}</div> +<div class="triptitle">{{logbook_entry.title}}</div> {{logbook_entry.text|safe}} <div class="timeug">T/U: {{logbook_entry.time_underground}}</div> |