mirror of
https://github.com/nikdoof/test-auth.git
synced 2026-01-30 16:08:14 +00:00
Small changes to the user lookup profile view
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user