blob: e2dd8e4b2a516492f07ecd6ac829fefe42024d6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<p>
<table>
{% for logbookentry in cave.logbookentry_set.all %}
{% if logbookentry.title %}
<tr>
<td>{{logbookentry.date}}</td>
<td><a href="{{ logbookentry.get_absolute_url }}">{{logbookentry.title|safe}}</a></td>
</tr>
{% endif %}
{% endfor %}
</table>
</p>
|