2022-11-13 17:42:47 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Notifications{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-17 16:43:00 -08:00
|
|
|
{% for event in events %}
|
|
|
|
{% include "activities/_event.html" %}
|
|
|
|
{% empty %}
|
|
|
|
No events yet.
|
|
|
|
{% endfor %}
|
2022-11-13 17:42:47 -08:00
|
|
|
{% endblock %}
|