2020-04-01 17:55:32 -04:00
{% load humanize %}
{% load fr_display %}
{% include 'snippets/avatar.html' with user=status.user %}
{% include 'snippets/username.html' with user=status.user %}
{% if status.status_type == 'Update' %}
{{ status.content | safe }}
2020-04-03 15:43:49 -04:00
{% elif status.status_type == 'Review' and not status.name and not status.content%}
2020-05-03 21:07:06 -04:00
rated < a href = "/book/{{ status.book.id }}" > {{ status.book.title }}< / a >
2020-04-01 17:55:32 -04:00
{% elif status.status_type == 'Review' %}
2020-05-03 21:07:06 -04:00
reviewed < a href = "/book/{{ status.book.id }}" > {{ status.book.title }}< / a >
2020-04-01 17:55:32 -04:00
{% elif status.status_type == 'Comment' %}
2020-05-03 21:07:06 -04:00
commented on < a href = "/book/{{ status.book.id }}" > {{ status.book.title }}< / a >
2020-04-08 12:40:47 -04:00
{% elif status.status_type == 'Quotation' %}
2020-05-03 21:07:06 -04:00
quoted < a href = "/book/{{ status.book.id }}" > {{ status.book.title }}< / a >
2020-04-01 17:55:32 -04:00
{% elif status.status_type == 'Boost' %}
boosted
{% elif status.reply_parent %}
{% with parent_status=status|parent %}
2020-05-12 21:56:28 -04:00
replied to {% include 'snippets/username.html' with user=parent_status.user possessive=True %} < a href = "{{parent_status.remote_id }}" > {{ parent_status.status_type | lower }}< / a >
2020-04-01 17:55:32 -04:00
{% endwith %}
{% endif %}
< span class = "time-ago" >
2020-05-12 21:56:28 -04:00
< a href = "{{ status.remote_id }}" > {{ status.published_date | naturaltime }}< / a >
2020-04-01 17:55:32 -04:00
< / span >