{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Update User" %}{% endblock %} {% block page_header %} {# to make searchable false, just remove it from the include statement #} {% include "horizon/common/_page_header.html" with title=_("Update User") %} {% endblock page_header %} {% block main %} {% csrf_token %}
{% include "horizon/common/_form_fields.html" %}

{% trans "Description" %}:

{% trans "From here you can edit the user's details." %}

{% trans "Your Password Must contain at least one number, one uppercase character, one lowercase character and one special character (eg @#$%^&*.:;~\|[]{} )." %}

{% trans 'Cancel' %}
{% endblock %} {% block js %} {{ block.super }} {% endblock %}