lib.itmens/catalog/templates/_item_card_metadata_tvseason.html
2024-07-14 00:27:29 -04:00

17 lines
616 B
HTML

{% extends "_item_card_metadata_base.html" %}
{% load humanize %}
{% load i18n %}
{% block brief %}
<div class="multi-fields">
{% if item.rating %}
<span class="solo-hidden">{{ item.rating | floatformat:1 }} <small>({{ item.rating_count }} {% trans "ratings" %})</small></span>
{% endif %}
{% include '_people.html' with people=item.director role='director' max=2 %}
{% include '_people.html' with people=item.actor role='actor' max=2 %}
</div>
{% endblock brief %}
{% block full %}
<div>
{% if not hide_brief %}{{ item.brief | linebreaksbr }}{% endif %}
</div>
{% endblock full %}