2021-05-11 18:14:42 -04:00
|
|
|
{% load status_display %}
|
2021-02-27 21:48:10 -05:00
|
|
|
{% load i18n %}
|
2021-05-11 18:14:42 -04:00
|
|
|
|
2020-10-08 15:38:06 -04:00
|
|
|
{% if not status.deleted %}
|
2021-03-02 23:17:32 -05:00
|
|
|
{% if status.status_type == 'Announce' %}
|
2021-03-07 13:24:46 -05:00
|
|
|
<a href="{{ status.user.local_path }}">
|
|
|
|
{% include 'snippets/avatar.html' with user=status.user %}
|
2021-03-07 18:20:09 -05:00
|
|
|
{{ status.user.display_name }}
|
2021-03-07 13:24:46 -05:00
|
|
|
</a>
|
2021-02-27 21:48:10 -05:00
|
|
|
{% trans "boosted" %}
|
2021-02-23 16:34:16 -05:00
|
|
|
{% include 'snippets/status/status_body.html' with status=status|boosted_status %}
|
2020-11-07 21:59:38 -05:00
|
|
|
{% else %}
|
2021-02-23 16:34:16 -05:00
|
|
|
{% include 'snippets/status/status_body.html' with status=status %}
|
2020-11-07 21:59:38 -05:00
|
|
|
{% endif %}
|
2020-10-08 15:38:06 -04:00
|
|
|
{% endif %}
|