{{logbookentry.date|date:"D d M Y"}}
{% for persontrip in logbookentry.persontrip_set.all %}{% if persontrip.is_logbook_entry_author %} {{persontrip.personexpedition.person}}{% endif %}{% endfor %}
{{logbookentry.text|safe}}
{% if svxothers %}Survex files on this date:
{% for item in svxothers %}
{% if item.isSurvexBlock %} {{item.survexfile.path|safe}} {% endif %}
{% empty %}
None found for this date.
{% endfor %}
{% else %}
No survex files found for this date.
{% endif %}
{% if wallets %}Wallets on this date:
{% for item in wallets %}
{{item.walletname|safe}}
{% if item.name %}
{{item.name|safe}}
{% else %}
{{item.get_fnames|safe}}
{% endif %}
{% empty %}
None found for this date.
{% endfor %}
{% else %}
No wallets files found for this date.
{% endif %}
{% if trips %}All logbook trips on this date:
{% for item in trips %}
{% if item.isLogbookEntry %} {{item.title|safe}} {% endif %}
{% empty %}
None found for this date, but there should be..
{% endfor %}
{% else %}
Hmm...
{% endif %}
{% endblock %}