mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 07:29:43 +00:00
33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
{% load activity_tags %}
|
|
|
|
{% if event.type == "followed" %}
|
|
<div class="follow-banner">
|
|
<a href="{{ event.subject_identity.urls.view }}">
|
|
{{ event.subject_identity.name_or_handle }}
|
|
</a> followed you
|
|
</div>
|
|
{% include "activities/_identity.html" with identity=event.subject_identity created=event.created %}
|
|
{% elif event.type == "liked" %}
|
|
<div class="like-banner">
|
|
<a href="{{ event.subject_identity.urls.view }}">
|
|
{{ event.subject_identity.name_or_handle }}
|
|
</a> liked your post
|
|
</div>
|
|
{% include "activities/_post.html" with post=event.subject_post %}
|
|
{% elif event.type == "mentioned" %}
|
|
<div class="mention-banner">
|
|
<a href="{{ event.subject_identity.urls.view }}">
|
|
{{ event.subject_identity.name_or_handle }}
|
|
</a> mentioned you
|
|
</div>
|
|
{% include "activities/_post.html" with post=event.subject_post %}
|
|
{% elif event.type == "boosted" %}
|
|
<div class="boost-banner">
|
|
<a href="{{ event.subject_identity.urls.view }}">
|
|
{{ event.subject_identity.name_or_handle }}
|
|
</a> boosted your post
|
|
</div>
|
|
{% include "activities/_post.html" with post=event.subject_post %}
|
|
{% else %}
|
|
Unknown event type {{event.type}}
|
|
{% endif %}
|