{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% block title %}Notifications{% endblock %} {% block content %}
{{ notification_count }} unread notifications
Settings
{% if notifications %}
    {% for notification in notifications %}
  • {{ notification.message|safe }} {{ moment(notification.timestamp).fromNow(refresh=True) }} {% if notification.is_read == False %}
    {% endif %}
  • {% endfor %}
{% else %}
No notifications.
{% endif %}
{% endblock %}