summaryrefslogtreecommitdiffstats
path: root/templates/activities/notifications.html
blob: c071a495f913d98af8f2f9c193c863ef7d4fe597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base.html" %}

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

{% block content %}
    {% include "activities/_home_menu.html" %}

    <section class="columns">
        <div class="left-column">
            {% for event in events %}
                {% include "activities/_event.html" %}
            {% empty %}
                No events yet.
            {% endfor %}
        </div>

        <div class="right-column">
            <h2>?</h2>
        </div>

    </section>
{% endblock %}