Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / admin / templates / users_list.html @ 483c9197

History | View | Annotate | Download (894 Bytes)

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

    
3
{% block body %}
4
<table class="zebra-striped id-sorted">
5
  <thead>
6
    <tr>
7
      <th>ID</th>
8
      <th>Name</th>
9
      <th>Real Name</th>
10
      <th>Uniq</th>
11
      <th>Credit</th>
12
      <th>Type</th>
13
      <th>State</th>
14
      <th>Updated</th>
15
    </tr>
16
  </thead>
17
  <tbody>
18
    {% for user in users %}
19
    <tr>
20
      <td><a href="{% url synnefo.admin.views.users_info user.id %}">{{ user.id }}</a></td>
21
      <td><a href="{% url synnefo.admin.views.users_info user.id %}">{{ user.name }}</a></td>
22
      <td>{{ user.realname }}</td>
23
      <td>{{ user.uniq }}</td>
24
      <td>{{ user.credit }}</td>
25
      <td>{{ user.type }}</td>
26
      <td>{{ user.state }}</td>
27
      <td>{{ user.updated }}</td>
28
    </tr>
29
    {% endfor %}
30
  </tbody>
31
</table>
32

    
33
<a class="btn primary" href="{% url synnefo.admin.views.users_invite %}">Invite a user</a>
34
<br /><br />
35
{% endblock body %}