Files
atst/templates/task_orders/new/oversight.html
Patrick Smith 9883bde00c Remove unneccesary flash
The flash is in the base 'task_order/_new.html' template, so it doesn't
need to be included in the section as well.
2019-01-08 17:20:31 -05:00

26 lines
790 B
HTML

{% extends 'task_orders/_new.html' %}
{% from "components/user_info.html" import UserInfo %}
{% from "components/checkbox_input.html" import CheckboxInput %}
{% block heading %}
Oversight
{% endblock %}
{% block form %}
<!-- Oversight Section -->
<h3>Contracting Officer (KO) Information</h3>
{{ UserInfo(form.ko_first_name, form.ko_last_name, form.ko_email, form.ko_dod_id) }}
{{ CheckboxInput(form.ko_invite) }}
<h3>Contractive Officer Representative (COR) Information</h3>
{{ UserInfo(form.cor_first_name, form.cor_last_name, form.cor_email, form.cor_dod_id) }}
{{ CheckboxInput(form.cor_invite) }}
<h3>Security Officer Information</h3>
{{ UserInfo(form.so_first_name, form.so_last_name, form.so_email, form.so_dod_id) }}
{{ CheckboxInput(form.so_invite) }}
{% endblock %}