diff options
Diffstat (limited to 'templates/cave.html')
-rw-r--r-- | templates/cave.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/cave.html b/templates/cave.html index f8a511d..495e2f7 100644 --- a/templates/cave.html +++ b/templates/cave.html @@ -7,10 +7,12 @@ <h3>All trips done in this cave</h3>
<table>
{% for logbookentry in cave.logbookentry_set.all %}
+ {% if logbookentry.title %}
<tr>
<td>{{logbookentry.date}}</td>
<td><a href="{% url logbookentry logbookentry.href %}">{{logbookentry.title|safe}}</a></td>
</tr>
+ {% endif %}
{% endfor %}
</table>
</div>
|