{% load i18n %} {% if invite_link_notice %}
{% if invite_link_notice.kind == "email_not_sent" %}
{% translate "Invitation not sent" %}
{% blocktranslate with email=invite_link_notice.email %}No invitation was sent because email is not set up. Hand out the following link to {{ email }} yourself:{% endblocktranslate %}
{% else %}
{% blocktranslate with email=invite_link_notice.email %}Hand out the following link to {{ email }} yourself:{% endblocktranslate %}
{% endif %} {% include "includes/copy_button.html" with copy_value=invite_link_notice.link %}
{% endif %}