{% extends "base.html" %} {% load i18n bootstrap %} {% block body %} {% trans "Back to profile" %}

{% trans "Team:" %} {{object}}

{% trans "Invite a user to this Team." %}
{% csrf_token %} {% render_field form.recipient_id help_text="Make sure to use a correct email as you will not receive an error message if it is not the case (in order to avoid phishing)." %}

{% trans 'Users' %}

{% for user in other_users %} {% empty %} {% trans "No other user in this Team." %} {% endfor %}
{{user}}
{% csrf_token %}
{% csrf_token %}
{% endblock %}