{% extends "base.html" %}

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

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