mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
21 lines
1 KiB
HTML
21 lines
1 KiB
HTML
{% load fr_display %}
|
|
<div class="post {{ status.status_type|lower }} depth-{{ depth }} {% if main %}main{% else %}reply{% endif %}">
|
|
{% include 'snippets/activity_banner.html' with activity=status %}
|
|
{% if not hide_book and status.mention_books.count %}
|
|
<div class="book-preview">
|
|
{% include 'snippets/book.html' with book=status.mention_books.first %}
|
|
</div>
|
|
{% endif %}
|
|
{% if not hide_book and status.book%}
|
|
<div class="book-preview">
|
|
{% include 'snippets/book.html' with book=status.book %}
|
|
</div>
|
|
{% endif %}
|
|
{% if status.status_type == 'Review' %}<h4>{{ status.name }}
|
|
<small>{{ status.rating | stars }} stars, by {% include 'snippets/username.html' with user=status.user %}</small>
|
|
</h4>{% endif %}
|
|
<blockquote>{{ status.content | safe }}</blockquote>
|
|
{% if not max_depth and status.reply_parent or status|replies %}<p><a href="{{ status.absolute_id }}">Thread</a>{% endif %}
|
|
{% include 'snippets/interaction.html' with activity=status %}
|
|
</div>
|
|
|