2022-01-18 20:28:59 +00:00
|
|
|
{% load landing_page_tags %}
|
2021-08-07 19:33:45 +00:00
|
|
|
{% load utilities %}
|
2021-03-04 22:27:49 +00:00
|
|
|
{% load i18n %}
|
2021-08-08 01:54:00 +00:00
|
|
|
{% load status_display %}
|
2021-04-24 10:48:55 +00:00
|
|
|
|
2021-08-08 01:54:00 +00:00
|
|
|
{% if status.book or status.mention_books.exists %}
|
|
|
|
{% load_book status as book %}
|
|
|
|
<a href="{{ book.local_path }}">
|
2021-08-19 22:30:58 +00:00
|
|
|
{% include 'snippets/book_cover.html' with cover_class='is-w-l-mobile is-w-auto align to-b to-l' size='xxlarge' %}
|
2021-08-08 01:54:00 +00:00
|
|
|
</a>
|
2021-08-07 19:33:45 +00:00
|
|
|
|
2021-08-08 01:54:00 +00:00
|
|
|
<div class="block mt-2">
|
|
|
|
{% include 'snippets/shelve_button/shelve_button.html' %}
|
|
|
|
</div>
|
2021-01-03 19:24:26 +00:00
|
|
|
|
2021-08-08 01:54:00 +00:00
|
|
|
<div class="media block mb-2">
|
|
|
|
<figure class="media-left" aria-hidden="true">
|
2022-02-12 15:33:16 +00:00
|
|
|
<a class="image is-48x48" href="{{ status.user.local_path }}" tabindex="-1">
|
2021-08-08 01:54:00 +00:00
|
|
|
{% include 'snippets/avatar.html' with user=status.user ariaHide="true" medium="true" %}
|
|
|
|
</a>
|
|
|
|
</figure>
|
2021-04-24 10:48:55 +00:00
|
|
|
|
2021-08-08 01:54:00 +00:00
|
|
|
<div class="media-content">
|
|
|
|
<h3 class="title is-6">
|
2021-10-15 21:10:34 +00:00
|
|
|
{% include "discover/card-header.html" %}
|
2021-08-08 01:54:00 +00:00
|
|
|
</h3>
|
|
|
|
{% if status.rating %}
|
2021-04-24 10:48:55 +00:00
|
|
|
<p class="subtitle is-6">
|
2021-08-08 01:54:00 +00:00
|
|
|
{% include 'snippets/stars.html' with rating=status.rating %}
|
2021-04-24 10:48:55 +00:00
|
|
|
</p>
|
2021-08-08 01:54:00 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="block">
|
|
|
|
<a href="{{ status.remote_id }}">
|
|
|
|
<span>{% trans "View status" %}</span>
|
|
|
|
<span class="icon icon-arrow-right" aria-hidden="true"></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="block">
|
|
|
|
{% include 'snippets/follow_button.html' with user=status.user show_username=True minimal=True %}
|
|
|
|
</div>
|
2021-01-03 22:28:28 +00:00
|
|
|
{% endif %}
|