lib.itmens/catalog/templates/_crew.html

15 lines
338 B
HTML
Raw Normal View History

2024-05-19 16:32:59 -04:00
{% load i18n %}
2023-06-05 20:20:20 -04:00
{% for role, list in people.items %}
<div class="crew-list">
2024-05-19 16:32:59 -04:00
{% trans role %}:
2023-06-05 20:20:20 -04:00
{% for p in list %}
2023-06-05 17:55:39 -04:00
{% if forloop.counter <= max %}
2024-05-19 16:32:59 -04:00
{% if not forloop.first %}/{% endif %}
2023-06-05 20:20:20 -04:00
<span>{{ p }}</span>
2023-06-05 17:55:39 -04:00
{% elif forloop.last %}
2024-05-19 16:32:59 -04:00
2023-06-05 17:55:39 -04:00
{% endif %}
{% endfor %}
2023-06-05 20:20:20 -04:00
</div>
{% endfor %}