Shwo book preview with rating status

This commit is contained in:
Mouse Reeve
2020-04-04 10:38:26 -07:00
parent 6ff1906a0b
commit 88c3a9fbe8
2 changed files with 6 additions and 13 deletions

View File

@ -33,15 +33,19 @@
<div>
{% if status.status_type == 'Review' %}
<h3>
{{ status.name }}<br>
{% if status.name %}{{ status.name }}<br>{% endif %}
{% include 'snippets/stars.html' with rating=status.rating %}
</h3>
{% endif %}
{% if status.status_type != 'Update' and status.status_type != 'Boost' %}
{% if status.content and status.status_type != 'Update' and status.status_type != 'Boost' %}
<blockquote>{{ status.content | safe }}</blockquote>
{% endif %}
{% if not status.content and status.book and not hide_book and status.status_type != 'Boost' %}
{% include 'snippets/book_description.html' with book=status.book %}
{% endif %}
{% if status.status_type == 'Boost' %}
{% include 'snippets/status_content.html' with status=status|boosted_status %}
{% endif %}