forked from gergely/calendar-social
10 lines
183 B
HTML
10 lines
183 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
{% for notif in notifs %}
|
|
{{ notif.html }}<br>
|
|
{% else %}
|
|
{% trans %}Nothing to show.{% endtrans %}
|
|
{% endfor %}
|
|
{% endblock content %}
|