2021-03-14 16:08:46 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
|
|
{% block title %}<h1>Token Übersicht</h1>{% endblock %}
|
2021-03-07 23:05:26 +00:00
|
|
|
|
|
|
|
<script src="../static/jquery-3.6.0.js"></script>
|
2021-03-14 16:08:46 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-03-07 22:19:44 +00:00
|
|
|
<table border="1">
|
|
|
|
<td>Token</td>
|
|
|
|
<td>NutzerIn</td>
|
|
|
|
<td>Organisation</td>
|
|
|
|
<td>E-Mail</td>
|
|
|
|
<td>Gültig bis</td>
|
|
|
|
<td>Aktionen</td>
|
|
|
|
{% for t, data in assigned_tokens.items() %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ t }}</td>
|
|
|
|
{% for field in ['name', 'organization', 'email', 'valid_thru'] %}
|
|
|
|
<td>{{ data[field] if data[field] }}</td>
|
|
|
|
{% endfor %}
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('edit_token', token=t) }}"><img src="static/edit.png" title="Editieren" alt="Edit"></a>
|
|
|
|
<a href="{{ url_for('deactivate_token', token=t) }}"><img src="static/stop.png" title="Deaktivieren" alt="Deactivate"></a>
|
2021-03-21 20:45:13 +00:00
|
|
|
<a href="{{ url_for('delete_token', token=t) }}"><img src="static/delete.png" title="Löschen" alt="Delete"></a>
|
2021-03-07 22:19:44 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% for t, data in inactive_tokens.items() %}
|
|
|
|
<tr style="background-color: lightgrey">
|
|
|
|
<td>{{ t }}</td>
|
|
|
|
{% for field in ['name', 'organization', 'email', 'valid_thru'] %}
|
|
|
|
<td>{{ data[field] if data[field] }}</td>
|
|
|
|
{% endfor %}
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('edit_token', token=t) }}"><img src="static/edit.png" title="Editieren" alt="Edit"></a>
|
2021-03-07 23:05:26 +00:00
|
|
|
<img src="static/delete.png" title="Löschen" alt="Delete" onclick="confirmDelete('{{ t }}')">
|
2021-03-07 22:19:44 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2021-03-14 16:08:46 +00:00
|
|
|
{% endblock %}
|