{% extends "ereuse_devicehub/base_site.html" %} {% block page_title %}Your Profile{% endblock %} {% block main %}

Profile

{{ current_user.get_full_name }}

{% for f in password_form %} {% if f == password_form.csrf_token %} {{ f }} {% else %}
{{ f }} {% if f.errors %}

{% for error in f.errors %} {{ error }}
{% endfor %}

{% endif %}
{% endif %} {% endfor %}
{% for f in sanitization_form %} {% if f == sanitization_form.csrf_token %} {{ f }} {% else %}
{{ f }} {% if f.errors %}

{% for error in f.errors %} {{ error }}
{% endfor %}

{% endif %}
{% endif %} {% endfor %}
{% if current_user.get_abac_did() %} {% endif %} {% for k, v in current_user.get_abac_attributes().items() %}
{% if v[:4] == 'http' %} {{ v }} {% else %} {{ v }} {% endif %}
{% endfor %}
{% endblock main %}