phantasmobile/app/templates/archive.html
2023-08-16 17:58:28 +02:00

10 lines
275 B
HTML

{% extends "base.html" %}
{% block content %}
{% for item in items %}
{% ifchanged item.week %}
<h2>{{ item.year }} week {{ item.week }}</h2>
{% endifchanged %}
{% include "listitem.html" with item=item %}
{% endfor %}
{% endblock %}