takahe/templates/activities/_event.html

40 wiersze
1.4 KiB
HTML
Czysty Zwykły widok Historia

2022-11-14 01:42:47 +00:00
{% load activity_tags %}
2022-11-18 01:52:00 +00:00
{% if event.type == "followed" %}
<div class="follow-banner">
<a href="{{ event.subject_identity.urls.view }}">
2022-12-15 07:50:54 +00:00
{{ event.subject_identity.html_name_or_handle }}
2022-11-18 01:52:00 +00:00
</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 }}">
2022-12-15 07:50:54 +00:00
{{ event.subject_identity.html_name_or_handle }}
2022-11-18 01:52:00 +00:00
</a> liked your post
</div>
{% if not event.collapsed %}
2023-01-09 16:58:17 +00:00
{% include "activities/_post.html" with post=event.subject_post %}
{% endif %}
2022-11-18 01:52:00 +00:00
{% elif event.type == "mentioned" %}
<div class="mention-banner">
<a href="{{ event.subject_identity.urls.view }}">
2022-12-15 07:50:54 +00:00
{{ event.subject_identity.html_name_or_handle }}
2022-11-18 01:52:00 +00:00
</a> mentioned you
</div>
{% if not event.collapsed %}
2023-01-09 16:58:17 +00:00
{% include "activities/_post.html" with post=event.subject_post %}
{% endif %}
2022-11-18 01:52:00 +00:00
{% elif event.type == "boosted" %}
2022-11-23 01:59:51 +00:00
<div class="boost-banner">
<a href="{{ event.subject_identity.urls.view }}">
2022-12-15 07:50:54 +00:00
{{ event.subject_identity.html_name_or_handle }}
2022-11-23 01:59:51 +00:00
</a> boosted your post
</div>
{% if not event.collapsed %}
2023-01-09 16:58:17 +00:00
{% include "activities/_post.html" with post=event.subject_post event=event %}
{% endif %}
2022-11-18 01:52:00 +00:00
{% else %}
Unknown event type {{event.type}}
{% endif %}