{% extends "orga/base.html" %} {% load bootstrap4 %} {% load i18n %} {% block title %}{% translate "Invitation" %} :: {{ invitation.team.name }}{% endblock %} {% block content %}

{% blocktranslate with organiser=invitation.team.organiser.name name=invitation.team.name trimmed %} Invitation to the {{ organiser }} team "{{ name }}" {% endblocktranslate %}

{% if request.user.is_anonymous %}

{% blocktranslate trimmed with name=invitation.team.name link=request.path %} You have been invited to join the organiser team {{ name }}. {% endblocktranslate %}

{% blocktranslate trimmed with domain=request.get_host %} If you already have an account – either as a speaker or an organiser – at {{ domain }}, please log in now. Otherwise, create a new account to join the team! {% endblocktranslate %}


{% include "common/auth.html" %} {% else %}
{% csrf_token %}

{% blocktranslate trimmed with name=invitation.team.name %} You have been invited to join the organiser team {{ name }}. {% endblocktranslate %} {% blocktranslate trimmed with link=request.path %} To accept the invitation with the account you're currently active, please use the button below. If you want to accept the invitation with a different account, you can log out and log in with the other account.

If you believe to have received this invitation by mistake, please contact the organiser directly. {% endblocktranslate %}

{% endif %} {% endblock %}