{% extends 'accounts/base-profile.html' %} {% load i18n widget_tweaks %} {% block content %} {{ block.super }}

{% trans 'Зміна профілю' %}

{% csrf_token %} {{ form.errors }} {{ form.non_field_errors }}
{{ form.first_name.label_tag }} {{ form.first_name|add_class:"form-control input-lg" }}
{{ form.first_name.errors }}
{{ form.last_name.label_tag }} {{ form.last_name|add_class:"form-control input-lg" }}
{{ form.last_name.errors }}
{{ form.address.label_tag }} {{ form.address|add_class:"form-control input-lg" }}
{{ form.address.errors }}
{{ form.mobile.label_tag }} {{ form.mobile|add_class:"form-control input-lg" }}
{{ form.mobile.errors }}
{% trans 'Відмінити' %}
{% endblock %}