summaryrefslogtreecommitdiff
path: root/django-openstack/django_openstack/templates/django_openstack/syspanel/users/update.html
blob: 301446c5a03504ef7219e1008bdd512cb172ce30 (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
{% extends 'django_openstack/syspanel/base.html' %}
{%load i18n%}

{% block sidebar %}
  {% with current_sidebar="users" %}
    {{block.super}}
  {% endwith %}
{% endblock %}

{% block page_header %}
  {# to make searchable false, just remove it from the include statement #}
  {% include "django_openstack/common/_page_header.html" with title=_("Update User") %}
{% endblock page_header %}

{% block syspanel_main %}
  <div class="dash_block">
    <div class="left">
      {% include 'django_openstack/syspanel/users/_update_form.html' %}
    </div>

    <div class="right">
      <h3>{% trans "Description"%}:</h3>
      <p>{% trans "From here you can edit users by changing their usernames, emails, passwords, and tenants."%}</p>
    </div>
    <div class="clear">&nbsp;</div>
  </div>
{% endblock %}