{% extends 'viewflow/base_page.html' %} {% load i18n static viewflow %} {% block title %}{% trans 'Profile' %} - {{ block.super }}{% endblock %} {% block js %} {{ block.super }} {% endblock js %} {% block page-title %}{% trans 'Profile' %}{% endblock %} {% block page-menu-app %}
arrow_back {% trans 'View site' %}
{% url 'profile' as profile_url %} {% if profile_url %} account_box {% trans 'Profile' %} {% endif %}
{% endblock %} {% block content %}

John Doe

admin@admin.com

{% for field, field_name, value in view.get_object_data %} {% endfor %}
{{ field_name }} {{ value }}
{% url 'password_change' as password_change_url %} {% if password_change_url %} {% trans "Change password" %} {% endif %} {% url 'profile_edit' as profile_edit_url %} {% if profile_edit_url %} {% trans "Edit" %} {% endif %}
{% trans "Change" %}
{% csrf_token %}
{% endblock content %}