23 lines
735 B
HTML
23 lines
735 B
HTML
{% extends "task_orders/builder_base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
{% from "components/checkbox_input.html" import CheckboxInput %}
|
|
|
|
{% set action = url_for("task_orders.submit_task_order", task_order_id=task_order_id) %}
|
|
{% set next_button_text = "Next: Confirm & Submit" %}
|
|
{% set previous_button_link = url_for("task_orders.form_step_four_review", task_order_id=task_order_id) %}
|
|
{% set step = "5" %}
|
|
|
|
{% block to_builder_form_field %}
|
|
<div>
|
|
<h1>Signature confirmation: <em>Task Order #{{task_order.number}}</em></h1>
|
|
</div>
|
|
|
|
{% call Alert('',
|
|
message="All task orders require a Contracting Officer signature."
|
|
) %}
|
|
|
|
{{ CheckboxInput(form.signature) }}
|
|
{% endcall %}
|
|
{% endblock %}
|