51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<p>
|
|
Hello, {{ user.preferred_username }} 👋
|
|
<small>(<a href="{{ url_for('logout') }}">logout</a>)</small>
|
|
</p>
|
|
|
|
<div>
|
|
<h2>Services</h2>
|
|
<ul>
|
|
<li>lumbung.space</li>
|
|
<li>panduan.lumbung.space</li>
|
|
<li>cloud.lumbung.space</li>
|
|
<li>tv.lumbung.space</li>
|
|
<li>nongkrong.lumbung.space</li>
|
|
<li>social.lumbung.space</li>
|
|
<li>pen.lumbung.space</li>
|
|
<li>books.lumbung.space</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h2>Invites</h2>
|
|
{% 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> <a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a> </td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
|
|
<p>
|
|
<a href="{{ url_for('invite_keycloak_create') }}">Generate an invite link</a>
|
|
</p>
|
|
</div>
|
|
|
|
{% endblock %}
|