{% extends "madga/studio/base.html" %} {% load i18n madga_studio_tags %} {% block title %}{% trans "Accept invitation" %} ยท {{ site.name|default:"MADGA" }}{% endblock %} {% block breadcrumbs %}{% trans "Invitation" %}{% endblock %} {% block content %}
{% if error == "not-found" %}

{% trans "Invitation not found" %}

{% trans "This link is no longer valid. Ask the admin to send you a new invitation." %}

{% trans "Go to login" %} {% elif error == "expired" %}

{% trans "Invitation expired" %}

{% blocktrans with site_name=invitation.site.name %}This invitation expired (over 14 days old). Ask the admin of {{ site_name }} to send you a new one.{% endblocktrans %}

{% trans "Go to login" %} {% else %}

{% blocktrans with site_name=invitation.site.name %}You've been invited to {{ site_name }}{% endblocktrans %}

{% trans "Email" %}: {{ invitation.email }}
{% trans "Role" %}: {{ invitation.get_role_display }}

{% csrf_token %}
{% endif %}
{% endblock %}