{% extends 'base.html' %} {% load static %} {% load i18n %} {% block body %}

{% trans "Update" %} {{ object }}

{% csrf_token %}
{% include 'component/image-field.html' with field=form.picture label='Picture' %}
{% include 'component/input.html' with md=6 input=form.username %}
{% include 'component/input.html' with md=6 input=form.first_name %} {% include 'component/input.html' with md=6 input=form.last_name %} {% if form.mobile_number %} {% include 'component/input.html' with md=6 input=form.mobile_number %} {% endif %} {% if form.email %} {% include 'component/input.html' with md=6 input=form.email %} {% endif %} {% include 'component/input.html' with md=12 input=form.is_admin %}
{% endblock %} {% block script %} {% endblock %}