moviewyrm/bookwyrm/templates/snippets/status.html

12 lines
441 B
HTML
Raw Normal View History

{% load fr_display %}
2020-10-08 19:38:06 +00:00
{% if not status.deleted %}
2020-11-08 02:59:38 +00:00
{% if status.status_type == 'Boost' %}
2020-10-08 19:38:06 +00:00
{% include 'snippets/avatar.html' with user=status.user %}
{% include 'snippets/username.html' with user=status.user %}
2020-11-08 02:59:38 +00:00
boosted
{% include 'snippets/status_body.html' with status=status|boosted_status %}
{% else %}
{% include 'snippets/status_body.html' with status=status %}
{% endif %}
2020-10-08 19:38:06 +00:00
{% endif %}