{% extends "base.html" %} {% load authnames crispy_forms_tags i18n icons translations %} {% block breadcrumbs %}
  • {% translate "Invitations" %}
  • {% translate "Invitation" %}
  • {% endblock breadcrumbs %} {% 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 content %}