atst/templates/task_orders/step_4.html
2019-07-18 10:31:45 -04:00

18 lines
533 B
HTML

{% extends "task_orders/builder_base.html" %}
{% set action = url_for('task_orders.form_step_five_confirm_signature', task_order_id=task_order_id) %}
{% set previous_button_link = url_for("task_orders.form_step_three_add_clins", task_order_id=task_order_id) %}
{% set step = "4" %}
{% block next_button %}
<a
href="{{ action }}"
class="usa-button usa-button-primary">
Next: Submit Task Order
</a>
{% endblock %}
{% block to_builder_form_field %}
{% include "fragments/task_order_review.html" %}
{% endblock %}