Statistics
| Branch: | Tag: | Revision:

root / pithos / im / templates / users_create.html @ 7e392d16

History | View | Annotate | Download (1.5 kB)

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

    
3
{% block body %}
4

    
5
<form action="{% url im.views.users_create %}" method="post">
6
  <div class="clearfix">
7
    <label for="user-uniq">Uniq</label>
8
    <div class="input">
9
      <input class="medium" 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="large" 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="large" 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
      <input class="medium" id="user-affiliation" name="quota" type="text" />
44
    </div>
45
  </div>
46

    
47
  <div class="clearfix">
48
    <label for="user-token">Token</label>
49
    <div class="input">
50
      <input class="large" id="user-token" name="auth_token" type="text" />
51
    </div>
52
  </div>
53

    
54
  <div class="actions">
55
    <button type="submit" class="btn primary">Create</button>
56
    <button type="reset" class="btn">Reset</button>
57
  </div>
58
</form>
59
{% endblock body %}