diff --git a/templates/portfolios/task_orders/index.html b/templates/portfolios/task_orders/index.html
index 4322d3aa..c138059c 100644
--- a/templates/portfolios/task_orders/index.html
+++ b/templates/portfolios/task_orders/index.html
@@ -6,14 +6,8 @@
{% block portfolio_content %}
-{% macro ViewLink(task_order, text="Edit") %}
-
- {{ text }}
-
-{% endmacro %}
-
-{% macro TaskOrderAction(task_order, text="Edit", route="review_task_order", secondary=False) %}
-
+{% macro TaskOrderAction(task_order, text="Edit", route="review_task_order", secondary=False, modal=None) %}
+
{{ text }}
{% endmacro %}
@@ -64,7 +58,7 @@
{% elif task_order.is_expired %}
{{ TaskOrderAction(task_order, text="View") }}
{% elif task_order.is_unsigned %}
- {{ TaskOrderAction(task_order, text="Sign", secondary=True) }}
+ {{ TaskOrderAction(task_order, text="Sign", secondary=True, modal="submit-to-1") }}
{{ TaskOrderAction(task_order, text="View") }}
{% else %}
{% endif %}