2023-07-15 13:00:36 +05:30
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2023-08-20 21:12:51 +02:00
|
|
|
<div class="index">
|
2023-07-15 13:00:36 +05:30
|
|
|
{% for item in items %}
|
2023-08-16 17:58:28 +02:00
|
|
|
{% ifchanged item.week %}
|
2023-08-20 21:14:23 +02:00
|
|
|
<h2 class="week">{{ item.year }} week {{ item.week }}</h2>
|
2023-08-16 17:58:28 +02:00
|
|
|
{% endifchanged %}
|
2023-07-16 11:26:14 +05:30
|
|
|
{% include "listitem.html" with item=item %}
|
2023-07-15 13:00:36 +05:30
|
|
|
{% endfor %}
|
2023-08-20 21:12:51 +02:00
|
|
|
{% if archive %}
|
|
|
|
<div class="archive">
|
|
|
|
<a href="{{ archive }}">previous weeks</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2023-07-15 13:00:36 +05:30
|
|
|
{% endblock %}
|
|
|
|
|