Moves status templates into dir

This commit is contained in:
Mouse Reeve
2021-02-23 13:34:16 -08:00
parent 27d81306e3
commit a0b57837a7
10 changed files with 10 additions and 10 deletions

View File

@ -0,0 +1,11 @@
{% load bookwyrm_tags %}
{% if not status.deleted %}
{% if status.status_type == 'Boost' %}
{% include 'snippets/avatar.html' with user=status.user %}
{% include 'snippets/username.html' with user=status.user %}
boosted
{% include 'snippets/status/status_body.html' with status=status|boosted_status %}
{% else %}
{% include 'snippets/status/status_body.html' with status=status %}
{% endif %}
{% endif %}