{% extends "base.html" %} {% block doctitle %} Team settings {% endblock %} {% block content %} {% if organization_user %}

{{ organization_user }} @ {{ organization }}

{% else %}

Invite new User

{% endif %} {% if user == organization_user.user %}This is you!{% endif %}
{% csrf_token %} {% for field in form %}
{% if field.errors %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% endif %} {{ field }}

{{ field.help_text }}

{% endfor %}
{% endblock %}