forked from mirrors/bookwyrm
21a954c7df
Plus some other shifting around
15 lines
518 B
HTML
15 lines
518 B
HTML
{% load status_display %}
|
|
{% load i18n %}
|
|
|
|
{% if not status.deleted %}
|
|
{% if status.status_type == 'Announce' %}
|
|
<a href="{{ status.user.local_path }}">
|
|
{% include 'snippets/avatar.html' with user=status.user %}
|
|
{{ status.user.display_name }}
|
|
</a>
|
|
{% trans "boosted" %}
|
|
{% include 'snippets/status/body.html' with status=status|boosted_status %}
|
|
{% else %}
|
|
{% include 'snippets/status/body.html' with status=status %}
|
|
{% endif %}
|
|
{% endif %}
|