summaryrefslogtreecommitdiffstats
path: root/templates/activities/notifications.html
blob: f34dc28e9527e7ac9c21568fc9ffbebc0eab50a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block title %}Notifications{% endblock %}

{% block content %}
    {% for event in events %}
        {% include "activities/_event.html" %}
    {% empty %}
        No notirications yet.
    {% endfor %}

    {% if page_obj.has_next %}
        <div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
    {% endif %}
{% endblock %}