{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}

{{ _('Notifications') }}

{% if notifications %} {% for notification in notifications %} {% endfor %}
Notification When {{ _('Mark all as read') }}
{% if not notification.read %}{% endif %} {{ notification.title }} {% if not notification.read %}{% endif %} {{ moment(notification.created_at).fromNow(refresh=True) }} Delete
{% else %}

No notifications to show.

{% endif %}
{% endblock %}