diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/activities/_event.html | 6 | ||||
-rw-r--r-- | templates/activities/notifications.html | 2 |
2 files changed, 7 insertions, 1 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 %} diff --git a/templates/activities/notifications.html b/templates/activities/notifications.html index a9c51be..f34dc28 100644 --- a/templates/activities/notifications.html +++ b/templates/activities/notifications.html @@ -3,7 +3,7 @@ {% block title %}Notifications{% endblock %} {% block content %} - {% for event in page_obj %} + {% for event in events %} {% include "activities/_event.html" %} {% empty %} No notirications yet. |