blob: 9bf66bb6c2a8facb73ad29acccf8eba6db3f72fa (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | {% extends "base.html" %}
{% block title %}Notifications{% endblock %}
{% block content %}
    {% for event in events %}
        {% include "activities/_event.html" %}
    {% empty %}
        No events yet.
    {% endfor %}
{% endblock %}
 |