forked from mirrors/bookwyrm
11 lines
275 B
HTML
11 lines
275 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.created_date | naturaltime }}
|
||
|
</span>
|
||
|
</h2>
|
||
|
|