{% extends "base.html" %} {% load i18n %} {% load translations %} {% load authnames %} {% load crispy_forms_tags %} {% load icons %} {% block breadcrumbs %}
  • {% trans "Invitations" %}
  • {% trans "Invitation" %}
  • {% endblock %} {% block content %} {% if not user.is_authenticated or object.user != user %}

    {% translate "Invitation to Weblate" %}

    {% if not user.is_authenticated %} {% translate "Please sign-in to view this invitation." %} {% else %} {% translate "This invitation belongs to a different user." %} {% endif %}
    {% else %}
    {% csrf_token %}

    {% blocktranslate with project_name=object.group.defining_project %}Invitation to {{ project_name }}{% endblocktranslate %}

    {% include "snippets/invite-info.html" with invitation=object %}
    {% endif %} {% endblock %}