{% extends "base.html" %} {% block title %}Notifications{% endblock %} {% block content %}
{% if notification_options.followed %} Followers {% else %} Followers {% endif %} {% if notification_options.boosted %} Boosts {% else %} Boosts {% endif %} {% if notification_options.liked %} Likes {% else %} Likes {% endif %} {% if notification_options.mentioned %} Mentions {% else %} Mentions {% endif %}
{% for event in events %} {% include "activities/_event.html" %} {% empty %} No notifications yet. {% endfor %} {% if page_obj.has_next %}
Next Page
{% endif %} {% endblock %}