~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to .pc/git-2012.1~e2~20111201.1077.patch/horizon/horizon/dashboards/syspanel/templates/syspanel/users/update.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-09 16:18:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111209161855-nguyenpghx2o2lqy
Tags: 2012.1~e2~20111209.1104-0ubuntu1
* New upstream release.
* Refreshed patches.
* debian/docs: Removed README

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends 'syspanel/base.html' %}
2
 
{%load i18n%}
3
 
 
4
 
{% block sidebar %}
5
 
  {% with current_sidebar="users" %}
6
 
    {{block.super}}
7
 
  {% endwith %}
8
 
{% endblock %}
9
 
 
10
 
{% block page_header %}
11
 
  {# to make searchable false, just remove it from the include statement #}
12
 
  {% include "horizon/common/_page_header.html" with title=_("Update User") %}
13
 
{% endblock page_header %}
14
 
 
15
 
{% block syspanel_main %}
16
 
  <div class="dash_block">
17
 
    <div class="left">
18
 
      {% include 'syspanel/users/_update_form.html' %}
19
 
    </div>
20
 
 
21
 
    <div class="right">
22
 
      <h3>{% trans "Description"%}:</h3>
23
 
      <p>{% trans "From here you can edit users by changing their usernames, emails, passwords, and tenants."%}</p>
24
 
    </div>
25
 
    <div class="clear">&nbsp;</div>
26
 
  </div>
27
 
{% endblock %}