10 lines
275 B
HTML
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 %}
|
|
|