
* new style with picocss * djlint * rate distribution * collection item drag to order * discover available for guest * search combine movie tv
11 lines
269 B
HTML
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 %}
|