takahe/templates/activities/_identity.html

18 lines
463 B
HTML
Raw Normal View History

2022-11-18 01:52:00 +00:00
{% load activity_tags %}
<div class="post user">
<a href="{{ identity.urls.view }}">
<img src="{{ identity.local_icon_url }}" class="icon" alt="Avatar for {{ identity.name_or_handle }}">
</a>
2022-11-18 01:52:00 +00:00
{% if created %}
<time>
{{ event.created | timedeltashort }}
</time>
{% endif %}
<a href="{{ identity.urls.view }}" class="handle">
{{ identity.name_or_handle }} <small>@{{ identity.handle }}</small>
</a>
</div>