{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Authentic - Account Management" %} {% endblock %} {% block content %}

{% trans "Account Management" %}

{% trans "Profile" %}

{% if profile %}
{% for key, value in profile %}
{{ key|capfirst }}
{{ value }}
{% endfor %}

{% trans "Edit profile" %}

{% else %}

{% trans "Create profile" %}

{% endif %}

{% trans "Credentials" %}

{% for html_block in frontends_block %} {{ html_block|safe }} {% endfor %}

{% trans "Back" %}

{% endblock %}