takahe/templates/activities/notifications.html
2022-11-17 14:13:55 -07:00

11 lines
241 B
HTML

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