summaryrefslogtreecommitdiffstats
path: root/templates/dataformat/logbookentry.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/dataformat/logbookentry.html')
-rw-r--r--templates/dataformat/logbookentry.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/templates/dataformat/logbookentry.html b/templates/dataformat/logbookentry.html
deleted file mode 100644
index 4d4046b..0000000
--- a/templates/dataformat/logbookentry.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% autoescape off %}
-<!DOCTYPE html>
-<html>
-<head>
-<style type="text/css">.author {text-decoration:underline}</style>
-</head>
-<body>
-<H1>{{trip.title}}</H1>
-<span class="date">{{date}}</span> - <span class="expeditionyear">{{expeditionyear}}</span>
-
-{% if trip.caveOrLocation == "cave" %}
-<span class="cave">{{trip.cave}}</span>
-{% else %}
-<span class="location">{{trip.location}}</span>
-{% endif %}
-
-{% for person in persons %}
-<div class="person">
-<span class="name{% if person.author %} author{% endif %}">{{person.name}}</span>
-TU<span class="TU">{% if person.TU %}{{person.TU}}{% else %}0{% endif %}</span>hours
-</div>
-{% endfor %}
-<div class="report">{{trip.html}}</div>
-</body>
-</html>
-{% endautoescape %}