diff options
author | Andrew Godwin | 2022-11-28 22:42:40 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-28 22:42:40 -0700 |
commit | c72893372afe255689ff56a618b6c849974569a3 (patch) | |
tree | 47672b39bb34811b9448ffab8e6d373baec83086 /templates/activities/_event.html | |
parent | c857cd026f9b140e5613274a816ec742c7fc3ee4 (diff) | |
download | takahe-c72893372afe255689ff56a618b6c849974569a3.tar.gz takahe-c72893372afe255689ff56a618b6c849974569a3.tar.bz2 takahe-c72893372afe255689ff56a618b6c849974569a3.zip |
Collapse notifications on the same post
Diffstat (limited to 'templates/activities/_event.html')
-rw-r--r-- | templates/activities/_event.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/activities/_event.html b/templates/activities/_event.html index c6d30b1..0c94aad 100644 --- a/templates/activities/_event.html +++ b/templates/activities/_event.html @@ -13,21 +13,27 @@ {{ event.subject_identity.name_or_handle }} </a> liked your post </div> + {% if not event.collapsed %} {% include "activities/_post.html" with post=event.subject_post %} + {% endif %} {% 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> + {% if not event.collapsed %} {% include "activities/_post.html" with post=event.subject_post %} + {% endif %} {% 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> + {% if not event.collapsed %} {% include "activities/_post.html" with post=event.subject_post %} + {% endif %} {% else %} Unknown event type {{event.type}} {% endif %} |