lib.itmens/catalog/templates/_people.html
Henri Dickson 0ffd47ca96
new style
* new style with picocss
* djlint
* rate distribution
* collection item drag to order
* discover available for guest
* search combine movie tv
2023-05-20 11:01:18 -04:00

11 lines
269 B
HTML

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