diff --git a/templates/portfolios/header.html b/templates/portfolios/header.html
index 88d12f60..fdd6d20f 100644
--- a/templates/portfolios/header.html
+++ b/templates/portfolios/header.html
@@ -27,7 +27,7 @@
icon='funding',
text='navigation.portfolio_navigation.breadcrumbs.funding' | translate,
url=url_for("task_orders.portfolio_funding", portfolio_id=portfolio.id),
- active=request.url_rule.endpoint in ["task_orders.portfolio_funding", "task_orders.review_task_order"],
+ active=request.url_rule.endpoint in ["task_orders.portfolio_funding", "task_orders.review_task_order", "task_orders.edit"],
) }}
{{ Link(
icon='applications',
diff --git a/templates/portfolios/task_orders/index.html b/templates/portfolios/task_orders/index.html
index c737a9e8..f4d62f27 100644
--- a/templates/portfolios/task_orders/index.html
+++ b/templates/portfolios/task_orders/index.html
@@ -96,7 +96,9 @@
{% call StickyCTA(text="Funding") %}
- Start a new task order
+ {% if user_can(permissions.CREATE_TASK_ORDER) %}
+ Start a new task order
+ {% endif %}
{% endcall %}
{% include "fragments/flash.html" %}