Invite links prototype working
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
decentral1se
2021-06-12 19:46:48 +02:00
parent 480cd4a4fe
commit 80dd93823e
6 changed files with 327 additions and 26 deletions

View File

@ -10,12 +10,12 @@
<table>
<tr>
<th>Link</th>
<th>Validity </th>
<th>Validity</th>
<th>Operations</th>
</tr>
{% for invite in invites %}
<tr>
<td> <a class="invite" href="{{ url_for('home') }}{{ invite.link }}">{{ url_for('home') }}{{ invite.link }}</a> </td>
<td> <a class="invite" href="{{ url_for('register_invite', invite=invite.link) }}">{{ url_for('register_invite', invite=invite.link) }}</a> </td>
<td> {{ invite.human_time }} </td>
<td> <a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a> </td>
</tr>