takahe/templates/activities/notifications.html

16 lines
411 B
HTML
Raw Normal View History

2022-11-13 17:42:47 -08:00
{% extends "base.html" %}
{% block title %}Notifications{% endblock %}
{% block content %}
{% for event in events %}
2022-11-17 16:43:00 -08:00
{% include "activities/_event.html" %}
{% empty %}
2022-11-29 13:15:37 -08:00
No notifications yet.
2022-11-17 16:43:00 -08:00
{% endfor %}
2022-11-22 07:57:40 -08:00
{% if page_obj.has_next %}
<div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
{% endif %}
2022-11-13 17:42:47 -08:00
{% endblock %}