{% extends 'core/page.html' %} {% load i18n %} {% load core_tags %} {% load accounts_tags %} {% block page %}
{% if object.user %} {% full_name object.user as user %} {% blocktrans with object.project.title as title trimmed %} You are about to remove the invite of {{ user }} from the project {{ title }}. {% endblocktrans %} {% else %} {% with object.email as user %} {% blocktrans with object.project.title as title trimmed %} You are about to remove the invite of {{ user }} from the project {{ title }}. {% endblocktrans %} {% endwith %} {% endif %}
{% bootstrap_delete_form submit=_('Delete invite') %} {% endblock %}