lib.itmens/catalog/templates/_people.html
2024-05-20 12:00:17 -04:00

16 lines
338 B
HTML

{% load i18n %}
{% if people %}
<span>
{% if role %}
{% trans role %}:
{% endif %}
{% for p in people %}
{% if forloop.counter <= max %}
{% if not forloop.first %}/{% endif %}
<span>{{ p }}</span>
{% elif forloop.last %}
{% endif %}
{% endfor %}
</span>
{% endif %}