keycloak-collective-portal/templates/admin.html

29 lines
820 B
HTML
Raw Normal View History

2021-06-11 20:28:43 +00:00
<html>
<head>
<title>Home</title>
</head>
<body>
<p>
Hello, {{ user.preferred_username }}
<small>(<a href="{{ url_for('logout') }}">logout</a>)</small>
</p>
2021-06-12 00:15:50 +00:00
<table>
<tr>
<th>Link</th>
2021-06-12 17:46:48 +00:00
<th>Validity</th>
2021-06-12 00:15:50 +00:00
<th>Operations</th>
</tr>
{% for invite in invites %}
<tr>
2021-06-12 17:46:48 +00:00
<td> <a class="invite" href="{{ url_for('register_invite', invite=invite.link) }}">{{ url_for('register_invite', invite=invite.link) }}</a> </td>
2021-06-12 00:15:50 +00:00
<td> {{ invite.human_time }} </td>
2021-06-12 15:39:29 +00:00
<td> <a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a> </td>
2021-06-12 00:15:50 +00:00
</tr>
{% endfor %}
</table>
<p>
2021-06-12 00:15:50 +00:00
<a href="{{ url_for('invite_keycloak_create') }}">Generate an invite link</a>
</p>
2021-06-11 20:28:43 +00:00
</body>
</html>