moviewyrm/bookwyrm/templates/snippets/status/status.html

13 lines
488 B
HTML
Raw Normal View History

2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
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 %}
2021-02-28 02:48:10 +00:00
{% trans "boosted" %}
2021-02-23 21:34:16 +00:00
{% include 'snippets/status/status_body.html' with status=status|boosted_status %}
2020-11-08 02:59:38 +00:00
{% else %}
2021-02-23 21:34:16 +00:00
{% include 'snippets/status/status_body.html' with status=status %}
2020-11-08 02:59:38 +00:00
{% endif %}
2020-10-08 19:38:06 +00:00
{% endif %}