phantasmobile/app/templates/archive.html

11 lines
275 B
HTML
Raw Normal View History

2023-07-15 07:30:36 +00:00
{% extends "base.html" %}
{% block content %}
{% for item in items %}
2023-08-16 15:58:28 +00:00
{% ifchanged item.week %}
<h2>{{ item.year }} week {{ item.week }}</h2>
{% endifchanged %}
2023-07-16 05:56:14 +00:00
{% include "listitem.html" with item=item %}
2023-07-15 07:30:36 +00:00
{% endfor %}
{% endblock %}