~ubuntu-branches/ubuntu/quantal/horizon/quantal

« back to all changes in this revision

Viewing changes to horizon/dashboards/syspanel/users/templates/users/_create.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-07-06 11:38:55 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20120706113855-js8fsldgtool47yj
Tags: 2012.2~f2-0ubuntu1
New usptream version. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "horizon/common/_modal_form.html" %}
 
2
{% load i18n %}
 
3
 
 
4
{% block form_id %}create_user_form{% endblock %}
 
5
{% block form_action %}{% url horizon:syspanel:users:create %}{% endblock %}
 
6
 
 
7
{% block modal-header %}{% trans "Create User" %}{% endblock %}
 
8
 
 
9
{% block modal-body %}
 
10
<div class="left">
 
11
    <fieldset>
 
12
    {% include "horizon/common/_form_fields.html" %}
 
13
    </fieldset>
 
14
</div>
 
15
<div class="right">
 
16
    <h3>{% trans "Description" %}:</h3>
 
17
    <p>{% trans "From here you can create a new user and assign them to a project." %}</p>
 
18
</div>
 
19
{% endblock %}
 
20
 
 
21
{% block modal-footer %}
 
22
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Create User" %}" />
 
23
  <a href="{% url horizon:syspanel:users:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
 
24
{% endblock %}