diff --git a/templates/logbookentry.html b/templates/logbookentry.html
new file mode 100644
index 0000000..f1a1887
--- /dev/null
+++ b/templates/logbookentry.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+{% load wiki_markup %}
+
+{% block title %}Logbook {{logbookentry.id}}{% endblock %}
+
+{% block content %}
+
+
{{logbookentry.title}} - {{logbookentry.date}}
+
place (to be a link to cave shaped object): {{logbookentry.place}}
+
+ {% for persontrip in logbookentry.persontrip_set.all %}
+ -
+ {{persontrip.personexpedition}}
+ {% ifequal persontrip.personexpedition logbookentry.author %}
+ (author)
+ {% endifequal %}
+ {% if persontrip.timeunderground %}
+ - T/U {{persontrip.timeunderground}}
+ {% endif %}
+
+ {% endfor %}
+
+
[wiki_to_html doesn't do paragraphs. don't know where it is located]
+
{{logbookentry.text|wiki_to_html}}
+
+{% endblock %}