aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/user.html
blob: eb1361754640eefd509b70df7c84a2c25831e83d (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
28
29
{% extends "layout.html" %}

{% block content %}

<h1>User: {{ user_identifier|e }}</h1>

<div class="column">

<table class="info">

<tr>
  <th>Attribute Type</th>
  <th>Attribute Value</th>
</tr>

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

  <td>{{ attr|e }}</td>
  <td>{{ user[attr]|e }}</td>

  </tr>
{% endfor %}

</table>

</div>

{% endblock %}