{% 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 %} {{ arrow.get(notification.created_at).humanize(locale=locale) }} {{ _('Delete') }}
{% else %}

{{ _('No notifications to show.') }}

{% endif %}
{% endblock %}