mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 16:51:00 +00:00
11 lines
241 B
HTML
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 %}
|