2020-03-10 00:03:59 +00:00
|
|
|
{% 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 %}
|
2020-03-13 00:16:55 +00:00
|
|
|
<blockquote>{{ status.content | safe }}</blockquote>
|
2020-03-10 00:27:54 +00:00
|
|
|
{% if not max_depth and status.reply_parent or status|replies %}<p><a href="{{ status.absolute_id }}">Thread</a>{% endif %}
|
2020-03-10 00:03:59 +00:00
|
|
|
{% include 'snippets/interaction.html' with activity=status %}
|
|
|
|
</div>
|
|
|
|
|