takahe/templates/activities/notifications.html

12 lines
241 B
HTML
Raw Normal View History

2022-11-14 01:42:47 +00:00
{% extends "base.html" %}
{% block title %}Notifications{% endblock %}
{% block content %}
2022-11-18 00:43:00 +00:00
{% for event in events %}
{% include "activities/_event.html" %}
{% empty %}
No events yet.
{% endfor %}
2022-11-14 01:42:47 +00:00
{% endblock %}