{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

Contract: {{ project.name }}
{{ form.hidden_tag() }}
{{ form.user_id.label(class="form-label") }} {{ form.user_id(class="form-select") }} {% if form.user_id.errors %}
{% for e in form.user_id.errors %}{{ e }}{% endfor %}
{% endif %}
Only active users with the Customer role are listed.
{{ form.facility_id.label(class="form-label") }} {{ form.facility_id(class="form-select") }}
Select "All facilities in contract" to grant access to every facility within this contract, or choose a specific facility to restrict access.
Cancel
{% endblock %}