2022-01-13 08:06:46 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2022-01-13 08:25:39 +00:00
|
|
|
<div class="logo">
|
|
|
|
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{% if user.preferred_username in invites and invites[user.preferred_username]|length > 0 %}
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Link</th>
|
|
|
|
<th>Validity</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
{% for invite in invites[user.preferred_username] %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a class="invite" href="{{ url_for('register_invite', invite=invite.link) }}">
|
|
|
|
{{ url_for('register_invite', invite=invite.link) }}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td> {{ invite.validity }} </td>
|
|
|
|
<td> <button class="button is-ghost"><a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a></button></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
2022-01-13 08:06:46 +00:00
|
|
|
|
2022-01-13 08:25:39 +00:00
|
|
|
<p>
|
|
|
|
<button class="button is-ghost"><a href="{{ url_for('invite_keycloak_create') }}">Generate</a></button>
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-01-13 08:06:46 +00:00
|
|
|
{% endblock %}
|