lib.itmens/catalog/templates/_people.html

17 lines
338 B
HTML
Raw Normal View History

2024-05-19 16:32:59 -04:00
{% load i18n %}
{% if people %}
2023-05-21 15:30:32 -04:00
<span>
2024-05-19 16:32:59 -04:00
{% if role %}
{% trans role %}:
{% endif %}
2023-05-21 15:30:32 -04:00
{% for p in people %}
{% if forloop.counter <= max %}
2024-01-07 17:30:37 -05:00
{% if not forloop.first %}/{% endif %}
2023-05-21 15:30:32 -04:00
<span>{{ p }}</span>
{% elif forloop.last %}
2024-05-19 16:32:59 -04:00
2023-05-21 15:30:32 -04:00
{% endif %}
{% endfor %}
</span>
{% endif %}