{% extends "course_flow/base.html" %} {% load static i18n %} {% block title %}{% trans "Notifications" %} - CourseFlow{% endblock %} {% block metadescription %} {% endblock %} {% block header %}{% endblock %} {% block body %}
{% if object_list|length > 0 %}

{% trans "Notifications" %}

{% for notification in object_list %}
{{ notification.created_on }}
{{ notification.text }}
{% endfor %}
{% endif %}
{% endblock %} {% block foot %} {% endblock %} {% csrf_token %} {% block scripts %} {{ block.super }} {% endblock %}