{% extends "course_flow/base.html" %} {% load static i18n %} {% block title %}{% trans "Profile" %} - CourseFlow{% endblock %} {% block metadescription %} {% endblock %} {% block header %}{% endblock %} {% block body %}

{% trans 'Edit User' %}

{% csrf_token %} {{ form.as_p }}
{% if notifications|length > 0 %}

{% trans "Notifications" %}

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