summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/users/templates/users/_update.html
blob: 652fd524351e4a32926ffbf5abc7da70553548d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% load url from future %}

{% block form_id %}update_user_form{% endblock %}
{% block form_action %}{% url 'horizon:admin:users:update' user.id %}{% endblock %}

{% block modal-header %}{% trans "Update User" %}{% endblock %}

{% block modal-body %}
<div class="left">
    <fieldset>
    {% include "horizon/common/_form_fields.html" %}
    </fieldset>
</div>
<div class="right">
    <h3>{% trans "Description" %}:</h3>
    <p>{% trans "From here you can edit the user's details, including their default project." %}</p>
</div>

<script type="text/javascript">
  if (typeof horizon.user !== 'undefined') {
    horizon.user.init();
  } else {
    addHorizonLoadEvent(function() {
      horizon.user.init();
    });
  }
</script>
{% endblock %}

{% block modal-footer %}
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Update User" %}" />
  <a href="{% url 'horizon:admin:users:index' %}" class="btn btn-default secondary cancel close">{% trans "Cancel" %}</a>
{% endblock %}