2023-02-26 22:13:37 +00:00
|
|
|
<!-- this is an INCLUDED template onthisdate.html-->
|
|
|
|
|
|
|
|
{% if svxothers %}<u>Survex files</u> on this date:<br>
|
|
|
|
<span style="font-size: 70%; ">
|
|
|
|
{% for item in svxothers %}
|
2023-03-12 00:35:37 +00:00
|
|
|
<a href="/survexfile/{{item.path}}">{{item.path|safe}}</a> <br/>
|
2023-02-26 22:13:37 +00:00
|
|
|
{% empty %}
|
|
|
|
<em>None found for this date.</em><br>
|
|
|
|
{% endfor %}
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<em>No survex files found for this date.</em><br>
|
|
|
|
{% endif %}
|
|
|
|
{% if wallets %}<u>Wallets</u> on this date:<br>
|
|
|
|
<span style="font-size: 70%; ">
|
|
|
|
{% for item in wallets %}
|
|
|
|
<a href="/survey_scans/{{item.walletname|urlencode}}/">{{item.walletname|safe}}</a>
|
|
|
|
{% if item.name %}
|
2023-02-27 22:23:24 +00:00
|
|
|
{{item.name|safe}}
|
|
|
|
{% endif %}{{item.get_fnames|truncatechars:80}}<br/>
|
2023-02-26 22:13:37 +00:00
|
|
|
{% empty %}
|
|
|
|
<em>None found for this date.</em><br>
|
|
|
|
{% endfor %}
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<em>No wallets files found for this date.</em><br>
|
|
|
|
{% endif %}
|
2023-02-27 22:23:24 +00:00
|
|
|
{% if trips %}<u>Logbook trips</u> on this date:<br>
|
2023-02-26 22:13:37 +00:00
|
|
|
<span style="font-size: 70%; ">
|
|
|
|
{% for item in trips %}
|
|
|
|
{% if item.isLogbookEntry %} <a href="{{item.get_absolute_url}}">{{item.title|safe}}</a><br/>{% endif %}
|
|
|
|
{% empty %}
|
|
|
|
<em>None found for this date, but there should be..</em><br>
|
|
|
|
{% endfor %}
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<em>Hmm...</em><br>
|
|
|
|
{% endif %}
|
|
|
|
|