{% extends 'base.html' %} {% block title %}Notifications{% endblock %} {% block right_sidebar %} {% endblock %} {% block content %}

Notifications

Mark all as READ
{% if not notifications.total %}

You don't have notifications!

{% endif %} {% for notification in notifications %}
{{notification.text}}

Created at {{notification.created_at.strftime('%B %d, %Y')}}

{% endfor %} {% if page.pages > 1 %}
{% endif %}
{% endblock %}