moviewyrm/bookwyrm/templates/snippets/status/status_content.html

135 lines
4.6 KiB
HTML
Raw Normal View History

2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-04-09 21:57:49 +00:00
{% with status_type=status.status_type %}
<div
class="block"
{% if status_type == 'Review' %}
{% firstof "reviewBody" as body_prop %}
{% firstof 'itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating"' as rating_type %}
{% endif %}
{% if status_type == 'Rating' %}
itemprop="rating"
itemtype="https://schema.org/Rating"
{% endif %}
>
{% if status_type == 'Review' or status_type == 'Rating' %}
<div>
{% if status.name %}
<h3
class="title is-5 has-subtitle"
dir="auto"
itemprop="name"
>
{{ status.name|escape }}
</h3>
{% endif %}
<span
class="is-sr-only"
{{ rating_type }}
>
<meta itemprop="ratingValue" content="{{ status.rating|floatformat }}">
{% if status_type == 'Rating' %}
{# @todo Is it possible to not hard-code the value? #}
<meta itemprop="bestRating" content="5">
{% endif %}
</span>
{% include 'snippets/stars.html' with rating=status.rating %}
</div>
{% endif %}
2020-12-17 03:50:36 +00:00
{% if status.content_warning %}
2021-04-09 21:57:49 +00:00
<div>
<p>{{ status.content_warning }}</p>
{% trans "Show more" as button_text %}
{% with text=button_text class="is-small" controls_text="show-status-cw" controls_uid=status.id %}
{% include 'snippets/toggle/open_button.html' %}
{% endwith %}
</div>
2020-09-29 00:25:26 +00:00
{% endif %}
2021-04-09 21:57:49 +00:00
<div
2020-12-17 03:50:36 +00:00
{% if status.content_warning %}
2021-04-09 21:57:49 +00:00
id="show-status-cw-{{ status.id }}"
2021-04-10 17:57:23 +00:00
class="is-hidden"
2021-04-09 21:57:49 +00:00
{% endif %}
>
{% if status.content_warning %}
{% trans "Show less" as button_text %}
{% with text=button_text class="is-small" controls_text="show-status-cw" controls_uid=status.id %}
{% include 'snippets/toggle/close_button.html' %}
{% endwith %}
2020-12-17 03:50:36 +00:00
{% endif %}
2020-04-01 21:32:56 +00:00
2020-12-17 03:50:36 +00:00
{% if status.quote %}
2021-04-09 21:57:49 +00:00
<div class="quote block">
2021-04-10 17:57:23 +00:00
<blockquote dir="auto" class="content mb-2">{{ status.quote | safe }}</blockquote>
2020-04-02 02:38:07 +00:00
2021-04-09 21:57:49 +00:00
<p> &mdash; {% include 'snippets/book_titleby.html' with book=status.book %}</p>
</div>
2020-12-17 03:50:36 +00:00
{% endif %}
2021-04-09 21:57:49 +00:00
{% if status.content and status_type != 'GeneratedNote' and status_type != 'Announce' %}
{% with full=status.content|safe no_trim=status.content_warning itemprop=body_prop %}
{% include 'snippets/trimmed_text.html' %}
{% endwith %}
2020-12-17 03:50:36 +00:00
{% endif %}
2021-04-09 21:57:49 +00:00
{% if status.attachments.exists %}
2021-04-09 21:57:49 +00:00
<div class="block">
<div class="columns">
{% for attachment in status.attachments.all %}
<div class="column is-narrow">
<figure class="image is-128x128">
<a
href="/images/{{ attachment.image }}"
target="_blank"
aria-label="{% trans 'Open image in new window' %}"
>
<img
src="/images/{{ attachment.image }}"
{% if attachment.caption %}
alt="{{ attachment.caption }}"
title="{{ attachment.caption }}"
{% endif %}
>
</a>
</figure>
</div>
{% endfor %}
2020-12-17 03:50:36 +00:00
</div>
2020-11-24 20:07:00 +00:00
</div>
2020-12-17 03:50:36 +00:00
{% endif %}
2020-11-24 19:28:17 +00:00
</div>
2020-04-01 21:32:56 +00:00
</div>
2020-11-02 21:41:43 +00:00
{% if not hide_book %}
2021-04-09 21:57:49 +00:00
{% if status.book or status.mention_books.count %}
<div
{% if status_type != 'GeneratedNote' %}
class="box has-background-white-bis"
{% endif %}
>
{% if status.book %}
{% with book=status.book %}
{% include 'snippets/status/book_preview.html' %}
{% endwith %}
{% elif status.mention_books.count %}
{% with book=status.mention_books.first %}
{% include 'snippets/status/book_preview.html' %}
{% endwith %}
{% endif %}
</div>
2020-11-02 19:46:23 +00:00
{% endif %}
2020-11-02 21:41:43 +00:00
{% endif %}
2021-04-09 21:57:49 +00:00
{% endwith %}