mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-26 01:01:00 +00:00
20 lines
559 B
HTML
20 lines
559 B
HTML
{% load static %}
|
|
{% load activity_tags %}
|
|
<div class="post">
|
|
|
|
<time>
|
|
{% if event.published %}
|
|
{{ event.published | timedeltashort }}
|
|
{% else %}
|
|
{{ event.created | timedeltashort }}
|
|
{% endif %}
|
|
</time>
|
|
|
|
{% if event.type == "follow" %}
|
|
{{ event.subject_identity.name_or_handle }} followed you
|
|
{% elif event.type == "like" %}
|
|
{{ event.subject_identity.name_or_handle }} liked {{ event.subject_post }}
|
|
{% else %}
|
|
Unknown event type {{event.type}}
|
|
{% endif %}
|
|
</div>
|