mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Fixed status and keytype display on lookup output
This commit is contained in:
@@ -40,12 +40,13 @@
|
|||||||
<h2>Eve API Keys</h2>
|
<h2>Eve API Keys</h2>
|
||||||
{% if eveaccounts %}
|
{% if eveaccounts %}
|
||||||
<table>
|
<table>
|
||||||
<tr><th>User ID</th><th>API Key</th><th>Description</th><th>Active</th></tr>
|
<tr><th>User ID</th><th>API Key</th><th>Description</th><th>Key Type</th><th>Active</th></tr>
|
||||||
{% for acc in eveaccounts %}
|
{% for acc in eveaccounts %}
|
||||||
<tr><td>{{ acc.api_user_id }}</td>
|
<tr><td>{{ acc.api_user_id }}</td>
|
||||||
<td>{{ acc.api_key }}</td>
|
<td>{{ acc.api_key }}</td>
|
||||||
<td>{{ acc.description }}</td>
|
<td>{{ acc.description }}</td>
|
||||||
<td>{{ acc.api_status_description }}</td>
|
<td>{{ acc.get_api_keytype_description }}</td>
|
||||||
|
<td>{{ acc.get_api_status_description }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user