aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/users.html
blob: 5cb2dafc553d0b5de4c7fa2042603fbed3fec5b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "layout.html" %}

{% block content %}

<h1>Users</h1>

<table class="info">

<tr>
  <th>Uid</th>
  <th>Identifier</th>
</tr>

{% for user in users %}
  <tr class="{{ loop.cycle('alt','') }}">

  <td><b><a href="{{ user.user_link }}">{{ user.uid }}</a></b></td>
  <td>{{ user.identifier|e }}</td>

  </tr>
{% endfor %}

</table>

</div>

{% endblock %}