summaryrefslogtreecommitdiffstats
path: root/templates/activities/_identity.html
blob: 36d14a97fd988ae8ef5becb4dc087d71a78e4217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% load activity_tags %}
<div class="post user">

    <img src="{{ identity.local_icon_url }}" class="icon">

    {% 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>