Invite Link
{% if not request.user %}
Welcome to the CCCV Single-Sign-On!
{% endif %}
{% if invite.roles and invite.allow_signup %}
With this link you can register a new user account with the following roles or add the roles to an existing account:
{% elif invite.roles %}
With this link you can add the following roles to an existing account:
{% elif invite.allow_signup %}
With this link you can register a new user account.
{% endif %}
{% if invite.roles %}
{% for role in invite.roles %}
- {{ role.name }}{% if role.description %}: {{ role.description }}{% endif %}
{% endfor %}
{% endif %}
{% if request.user %}
{% if invite.roles %}
Logout and switch to a different account
{% endif %}
{% if invite.allow_signup %}
Logout to register a new account
{% endif %}
{% else %}
{% if invite.allow_signup %}
Register a new account
{% endif %}
{% if invite.roles %}
Login and add the roles to your account
{% endif %}
{% endif %}
{% endblock %}