{% from 'common/macros.html' import accordion %} {% extends 'base.html' %} {% block title %}invites{% endblock %} {% block content %}

To manage growth, {{ config.SITE_NAME }} disallows direct sign ups. Instead, users already with an account may invite people they know. You can create invite links here. Once an invite link is used to sign up, it can no longer be used.

{% call(section) accordion(disabled=invites | length == 0) %} {% if section == 'header' %} Your invites {% else %} {% if invites %} {% for invite in invites %} {% endfor %}
Link Revoke
Link
{% endif %} {% endif %} {% endcall %}
{% endblock %}