diff options
-rw-r--r-- | templates/svxfile.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/svxfile.html b/templates/svxfile.html index e37c48f..22abaf6 100644 --- a/templates/svxfile.html +++ b/templates/svxfile.html @@ -89,12 +89,12 @@ Report this to a nerd if you think this is incorrect. {% endfor %} {% for key, value in events.items %} -<details {% if forloop.first %} open{% endif %}> -<summary><b><a href="/expedition/{{key|date:"Y"}}">{{key|date:"Y"}}</a>{{key|date:"-m-d"}}</b> {{value.3}}</summary> -{% with trips=value.0 svxothers=value.1 wallets=value.2 %} - {% include 'onthisdate.html' %} -{% endwith %} -</details> + {% with trips=value.0 svxothers=value.1 wallets=value.2 blocks=value.3 %} + <details {% if forloop.first %} open{% endif %}> + <summary><b><a href="/expedition/{{key|date:"Y"}}">{{key|date:"Y"}}</a>{{key|date:"-m-d"}}</b> {{blocks}}</summary> + {% include 'onthisdate.html' %} + {% endwith %} + </details> {% endfor %} </span> {% endblock %} |