{% extends "base.html" %} {% block content %} {% include 'nav.html' %}

Hello {{user.preferred_username}}. On this page you can generate invite links for your friends to join lumbung.space! The invite links can be used by multiple people. Need more help? See panduan.lumbung.space for more.

{% if user.preferred_username in invites and invites[user.preferred_username]|length > 0 %} {% for invite in invites[user.preferred_username] %} {% endfor %}
Link Validity Actions
{{ url_for('register_invite', invite=invite.link) }} {{ invite.validity }}
{% endif %}
{% endblock %}