blob: 47800be7fc257fe523f83978edb70dec001c6035 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% if active_shelf == 'diary' and grouped_films %}
{% for group in grouped_films %}
<div class="month-group" data-month="{{ group.month }}">
<div class="month-rail">
<p class="month-label">{{ group.month }}</p>
</div>
<div class="month-stack">
{% for film in group.films %}
{% include "_film_card.html" %}
{% endfor %}
</div>
</div>
{% endfor %}
{% else %}
{% for film in films %}
{% include "_film_card.html" %}
{% endfor %}
{% endif %}
|