summaryrefslogtreecommitdiffstats
path: root/templates/activities/notifications.html
blob: 8b7bc1345e44ff532575ab21af4930cefd96794f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% extends "base.html" %}

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

{% block content %}
    <div class="view-options">
        {% if notification_options.followed %}
            <a href=".?followed=false" class="selected"><i class="fa-solid fa-check"></i> Followers</a>
        {% else %}
            <a href=".?followed=true"><i class="fa-solid fa-xmark"></i> Followers</a>
        {% endif %}
        {% if notification_options.boosted %}
            <a href=".?boosted=false" class="selected"><i class="fa-solid fa-check"></i> Boosts</a>
        {% else %}
            <a href=".?boosted=true"><i class="fa-solid fa-xmark"></i> Boosts</a>
        {% endif %}
        {% if notification_options.liked %}
            <a href=".?liked=false" class="selected"><i class="fa-solid fa-check"></i> Likes</a>
        {% else %}
            <a href=".?liked=true"><i class="fa-solid fa-xmark"></i> Likes</a>
        {% endif %}
        {% if notification_options.mentioned %}
            <a href=".?mentioned=false" class="selected"><i class="fa-solid fa-check"></i> Mentions</a>
        {% else %}
            <a href=".?mentioned=true"><i class="fa-solid fa-xmark"></i> Mentions</a>
        {% endif %}
    </div>

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

    <div class="pagination">
        {% if page_obj.has_previous %}
            <a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
        {% endif %}

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