multistep task order workflow
This commit is contained in:
32
templates/task_orders/new/oversight.html
Normal file
32
templates/task_orders/new/oversight.html
Normal file
@@ -0,0 +1,32 @@
|
||||
{% extends 'task_orders/_new.html' %}
|
||||
|
||||
{% from "components/text_input.html" import TextInput %}
|
||||
{% from "components/options_input.html" import OptionsInput %}
|
||||
{% from "components/date_input.html" import DateInput %}
|
||||
|
||||
{% block heading %}
|
||||
Funding
|
||||
{% endblock %}
|
||||
|
||||
{% block form %}
|
||||
|
||||
{% include "fragments/flash.html" %}
|
||||
|
||||
<!-- Oversight Section -->
|
||||
<h3>Contracting Officer (KO) Information</h3>
|
||||
{{ TextInput(form.ko_first_name) }}
|
||||
{{ TextInput(form.ko_last_name) }}
|
||||
{{ TextInput(form.ko_email) }}
|
||||
{{ TextInput(form.ko_dod_id) }}
|
||||
<h3>Contractive Officer Representative (COR) Information</h3>
|
||||
{{ TextInput(form.cor_first_name) }}
|
||||
{{ TextInput(form.cor_last_name) }}
|
||||
{{ TextInput(form.cor_email) }}
|
||||
{{ TextInput(form.cor_dod_id) }}
|
||||
<h3>Security Officer Information</h3>
|
||||
{{ TextInput(form.so_first_name) }}
|
||||
{{ TextInput(form.so_last_name) }}
|
||||
{{ TextInput(form.so_email) }}
|
||||
{{ TextInput(form.so_dod_id) }}
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user