diff --git a/fedireads/templates/snippets/status.html b/fedireads/templates/snippets/status.html index af4b73fa7..92900b279 100644 --- a/fedireads/templates/snippets/status.html +++ b/fedireads/templates/snippets/status.html @@ -10,6 +10,8 @@ reviewed {{ status.book.title }} {% elif status.status_type == 'Comment' %} commented on {{ status.book.title }} + {% elif status.status_type == 'Boost' %} + boosted {% elif status.reply_parent %} {% with parent_status=status|parent %} replied to {% include 'snippets/username.html' with user=parent_status.user possessive=True %} {{ parent_status.status_type|lower }} @@ -43,10 +45,15 @@ {% if status.status_type == 'Review' %}

{{ status.name }} {{ status.rating | stars }} stars, by {% include 'snippets/username.html' with user=status.user %}

{% endif %} - {% if status.status_type != 'Update' %} + {% if status.status_type != 'Update' and status.status_type != 'Boost' %}
{{ status.content | safe }}
{% endif %} + {% if status.status_type == 'Boost' %} + {% include 'snippets/status.html' with status=status.boosted_status depth=depth|add:1 %} + {% endif %} {% if not max_depth and status.reply_parent or status|replies %}

Thread{% endif %} +{% if status.status_type != 'Boost' %} {% include 'snippets/interaction.html' with activity=status %} +{% endif %}