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

18 lines
412 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.name }}
{% if p.role.strip %}(as {{ p.role }}){% endif %}
</span>
{% elif forloop.last %}
{% endif %}
{% endfor %}
</span>
{% endif %}