moviewyrm/fedireads/templates/snippets/status.html

32 lines
1.3 KiB
HTML
Raw Normal View History

2020-03-15 21:15:36 +00:00
{% load humanize %}
{% load fr_display %}
<div class="post {{ status.status_type|lower }} depth-{{ depth }} {% if main %}main{% else %}reply{% endif %}">
2020-03-15 21:15:36 +00:00
<h2>
{% include 'snippets/avatar.html' with user=status.user %}
{% include 'snippets/username.html' with user=status.user %}
{% if status.status_type == 'Update' %}
{{ status.content | safe }}
{% elif status.status_type == 'Review' %}
reviewed {{ status.book.title }}
2020-03-21 23:50:49 +00:00
{% elif status.status_type == 'Comment' %}
commented on {{ status.book.title }}
2020-03-30 15:31:31 +00:00
{% elif status.status_type == 'Boost' %}
boosted
2020-03-15 21:15:36 +00:00
{% elif status.reply_parent %}
{% with parent_status=status|parent %}
replied to {% include 'snippets/username.html' with user=parent_status.user possessive=True %} <a href="{{parent_status.absolute_id }}">{{ parent_status.status_type|lower }}</a>
{% endwith %}
{% endif %}
<span class="time-ago">
<a href="{{ status.absolute_id }}">{{ status.published_date | naturaltime }}</a>
</span>
</h2>
2020-04-01 21:32:56 +00:00
{% include 'snippets/status_content.html' with status=status %}
</div>
2020-03-30 15:31:31 +00:00
{% if status.status_type != 'Boost' %}
2020-03-15 21:15:36 +00:00
{% include 'snippets/interaction.html' with activity=status %}
2020-03-30 15:31:31 +00:00
{% endif %}