mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-27 01:31:00 +00:00
dab8dd59a7
Also create a new re-usable identity banner template. Fix super long handles (closes #270)
15 lines
418 B
HTML
15 lines
418 B
HTML
{% load activity_tags %}
|
|
<div class="post user" data-takahe-id="{{ identity.id }}">
|
|
|
|
{% include "identity/_identity_banner.html" with identity=identity %}
|
|
|
|
{% if created %}
|
|
<time>
|
|
{{ event.created | timedeltashort }}
|
|
</time>
|
|
{% endif %}
|
|
|
|
<a href="{{ identity.urls.view }}" class="handle">
|
|
{{ identity.html_name_or_handle }} <small>@{{ identity.handle }}</small>
|
|
</a>
|
|
</div>
|