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

{{ title }}

{{ form.hidden_tag() }}
{{ form.name.label(class="form-label") }} {{ form.name(class="form-control") }}
{{ form.description.label(class="form-label") }} {{ form.description(class="form-control", rows=3) }}
{{ form.frequency.label(class="form-label") }} {{ form.frequency(class="form-select") }}
{{ form.contract_ids.label(class="form-label") }} {{ form.contract_ids(class="form-select", size=6) }}
Leave nothing selected to share this form with every contract. Select one or more contracts to make it specific to them — it will then be hidden from every other customer's facilities, on the web and in the iPad app. Ctrl/Cmd-click to select several.
Cancel
{% endblock %}