2023-06-09 02:23:15 -04:00
|
|
|
{% extends "_item_card_metadata_base.html" %}
|
|
|
|
{% load humanize %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block brief %}
|
|
|
|
<div class="multi-fields">
|
2023-06-09 10:17:48 -04:00
|
|
|
{% if item.rating %}
|
2024-05-19 16:32:59 -04:00
|
|
|
<span class="solo-hidden">{{ item.rating | floatformat:1 }} <small>({{ item.rating_count }} {% trans "ratings" %})</small></span>
|
2023-06-09 10:17:48 -04:00
|
|
|
{% endif %}
|
2024-11-22 23:44:14 -05:00
|
|
|
{% include '_people.html' with people=item.host role='host' max=5 %}
|
2023-06-09 02:23:15 -04:00
|
|
|
</div>
|
|
|
|
{% endblock brief %}
|
|
|
|
{% block full %}
|
2023-06-09 10:52:44 -04:00
|
|
|
<div>
|
2024-07-14 10:45:27 -04:00
|
|
|
{% if not hide_brief %}{{ item.display_description | linebreaksbr }}{% endif %}
|
2023-06-09 10:52:44 -04:00
|
|
|
</div>
|
2023-06-09 02:23:15 -04:00
|
|
|
{% endblock full %}
|