Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / admin / templates / users_list.html @ 54ae949d

History | View | Annotate | Download (734 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>Type</th>
12
      <th>State</th>
13
      <th>Updated</th>
14
    </tr>
15
  </thead>
16
  <tbody>
17
    {% for user in users %}
18
    <tr>
19
      <td><a href="{% url synnefo.admin.views.users_info user.id %}">{{ user.id }}</a></td>
20
      <td><a href="{% url synnefo.admin.views.users_info user.id %}">{{ user.name }}</a></td>
21
      <td>{{ user.realname }}</td>
22
      <td>{{ user.uniq }}</td>
23
      <td>{{ user.type }}</td>
24
      <td>{{ user.state }}</td>
25
      <td>{{ user.updated }}</td>
26
    </tr>
27
    {% endfor %}
28
  </tbody>
29
</table>
30
{% endblock body %}