{% extends "InvenTree/settings/settings.html" %} {% load i18n %} {% block tabs %} {% include "InvenTree/settings/tabs.html" with tab='user' %} {% endblock %} {% block subtitle %} {% trans "User Settings" %} {% endblock %} {% block settings %}

{% trans "User Information" %}

{% trans "Edit" %}
{% trans "Set Password" %}
{% trans "Username" %} {{ user.username }}
{% trans "First Name" %} {{ user.first_name }}
{% trans "Last Name" %} {{ user.last_name }}
{% trans "Email Address" %} {{ user.email }}
{% endblock %} {% block js_ready %} {{ block.super }} $("#edit-user").on('click', function() { launchModalForm( "{% url 'edit-user' %}", { reload: true, } ); }); $("#edit-password").on('click', function() { launchModalForm( "{% url 'set-password' %}", { reload: true, } ); }); {% endblock %}