mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
976e7ddf79
Fixes #93
24 lines
811 B
HTML
24 lines
811 B
HTML
{% load fr_display %}
|
|
|
|
<div class="post {{ status.status_type | lower }} depth-{{ depth }} {% if main %}main{% else %}reply{% endif %}">
|
|
|
|
<h2>
|
|
{% if status.boosted_status %}
|
|
{% include 'snippets/status_header.html' with status=status.boosted_status %}
|
|
<small class="subhead">{% include 'snippets/status_header.html' with status=status %}</small>
|
|
{% else %}
|
|
{% include 'snippets/status_header.html' with status=status %}
|
|
{% endif %}
|
|
</h2>
|
|
|
|
<div class="status-content">
|
|
{% include 'snippets/status_content.html' with status=status %}
|
|
</div>
|
|
|
|
</div>
|
|
{% if status.status_type == 'Boost' %}
|
|
{% include 'snippets/interaction.html' with activity=status|boosted_status %}
|
|
{% else %}
|
|
{% include 'snippets/interaction.html' with activity=status %}
|
|
{% endif %}
|
|
|