From 4c3120e87ddb5a6ae815507a32d992a121a136d7 Mon Sep 17 00:00:00 2001 From: George Drummond Date: Tue, 26 Feb 2019 09:52:40 -0500 Subject: [PATCH] Link KO signing button to portfolios.ko_review --- templates/portfolios/task_orders/show.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/portfolios/task_orders/show.html b/templates/portfolios/task_orders/show.html index bbd0ff81..c5468a24 100644 --- a/templates/portfolios/task_orders/show.html +++ b/templates/portfolios/task_orders/show.html @@ -167,7 +167,11 @@ {{ Step( button_text=is_ko and not is_to_signed and ("common.sign" | translate), - button_url=is_ko and url_for("task_orders.signature_requested", task_order_id=task_order.id), + button_url=is_ko and url_for( + "portfolios.ko_review", + portfolio_id=portfolio.id, + task_order_id=task_order.id, + ), complete=is_to_signed, description="task_orders.view.steps.sign" | translate({ "contracting_officer": officer_name(task_order.contracting_officer)