Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / users_create.html @ 64cd4730

History | View | Annotate | Download (1.4 kB)

1
{% extends "admin_base.html" %}
2

    
3
{% block body %}
4

    
5
<form action="{% url astakos.im.views.users_create %}" method="post">
6
  <div class="clearfix">
7
    <label for="user-uniq">Uniq</label>
8
    <div class="input">
9
      <input class="span4" id="user-uniq" name="uniq" type="text" />
10
    </div>
11
  </div>
12

    
13
  <div class="clearfix">
14
    <label for="user-realname">Real Name</label>
15
    <div class="input">
16
      <input class="span4" id="user-realname" name="realname" type="text" />
17
    </div>
18
  </div>
19

    
20
  <div class="clearfix">
21
    <label for="user-admin">Admin</label>
22
    <div class="input">
23
      <ul class="inputs-list">
24
        <li>
25
          <label>
26
            <input type="checkbox" id="user-admin" name="admin">
27
          </label>
28
        </li>
29
      </ul>
30
    </div>
31
  </div>
32

    
33
  <div class="clearfix">
34
    <label for="user-affiliation">Affiliation</label>
35
    <div class="input">
36
      <input class="span4" id="user-affiliation" name="affiliation" type="text" />
37
    </div>
38
  </div>
39

    
40
  <div class="clearfix">
41
    <label for="user-quota">Quota</label>
42
    <div class="input">
43
      <div class="input-append">
44
        <input class="span2" id="user-quota" name="quota" type="text" />
45
        <span class="add-on">GiB</span>
46
      </div>
47
    </div>
48
  </div>
49

    
50
  <div class="actions">
51
    <button type="submit" class="btn primary">Create</button>
52
    <button type="reset" class="btn">Reset</button>
53
  </div>
54
</form>
55
{% endblock body %}