{% extends 'core/base.html' %} {% block title %}{{ title }} | Killian{% endblock %} {% block scripts %}{% endblock %} {% block content %}

{{ title }}

Assign one Killian role, organization access, and optionally email a secure account-setup invitation.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %} {% if field.name == 'organizations' %}
{{ field }}
{% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% else %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %} {% endfor %}
Cancel
{% endblock %}