Templates and fragments that relate to specific resources (portfolios, applications, task orders) should reside in directories named for the relevant resource. This also matches the way the application routes are distributed among modules named for each resource type.
18 lines
545 B
HTML
18 lines
545 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 "task_orders/fragments/task_order_review.html" %}
|
|
{% endblock %}
|