Small changes to the user lookup profile view

This commit is contained in:
2010-04-06 00:11:34 +01:00
parent d05f73f99e
commit 8af9b851e2

View File

@@ -12,12 +12,11 @@
<h2>Service Accounts</h2> <h2>Service Accounts</h2>
{% if services %} {% if services %}
<table> <table>
<tr><th>Service</th><th>Username</th><th>Password</th><th>Active</th></tr> <tr><th>Service</th><th>Username</th><th>Active</th></tr>
{% for acc in services %} {% for acc in services %}
<tr><td>{{ acc.service }}</td> <tr><td>{{ acc.service }}</td>
<td>{{ acc.service_uid }}</td> <td>{{ acc.service_uid }}</td>
<td>******</td> <td>{% if acc.active %}Yes{% else %}No{% endif %}</td>
<td>{{ acc.active }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>