bookwyrm/fedireads/templates/snippets/status_banner.html
2020-03-06 16:35:56 -08:00

10 lines
277 B
HTML

{% load humanize %}
<h2>
{% include 'snippets/avatar.html' with user=activity.user %}
{% include 'snippets/username.html' with user=activity.user %}
{{ content | safe }}
<span class="time-ago">
{{ activity.published_date | naturaltime }}
</span>
</h2>