forked from mirrors/bookwyrm
24 lines
835 B
HTML
24 lines
835 B
HTML
{% load fr_display %}
|
|
|
|
|
|
<div class="card{% if depth %}depth-{{ depth }} {% if main %}main{% else %}reply{% endif %}{% endif %}">
|
|
<header class="card-header level">
|
|
{% include 'snippets/status_header.html' with status=status %}
|
|
</header>
|
|
|
|
<div class="card-content">
|
|
{% if status.status_type == 'Boost' %}
|
|
{% include 'snippets/status_content.html' with status=status.boosted_status %}
|
|
{% else %}
|
|
{% include 'snippets/status_content.html' with status=status %}
|
|
{% endif %}
|
|
</div>
|
|
|
|
<footer class="card-footer">
|
|
{% if status.status_type == 'Boost' %}
|
|
{% include 'snippets/interaction.html' with activity=status.boosted_status %}
|
|
{% else %}
|
|
{% include 'snippets/interaction.html' with activity=status %}
|
|
{% endif %}
|
|
</footer>
|
|
</div>
|