diff --git a/src/registrar/templates/domain_detail.html b/src/registrar/templates/domain_detail.html
index b168f7e82..becf46d5b 100644
--- a/src/registrar/templates/domain_detail.html
+++ b/src/registrar/templates/domain_detail.html
@@ -50,11 +50,17 @@
{% if domain.get_state_help_text %}
{% if has_domain_renewal_flag and domain.is_expiring and is_domain_manager %}
+ This domain has expired, but it is still online.
+ {% url 'domain-renewal' pk=domain.id as url %}
+
Renew to maintain access.
+ {% elif has_domain_renewal_flag and domain.is_expired and is_domain_manager %}
This domain will expire soon.
{% url 'domain-renewal' pk=domain.id as url %}
Renew to maintain access.
{% elif has_domain_renewal_flag and domain.is_expiring and is_portfolio_user %}
This domain will expire soon. Contact one of the listed domain managers to renew the domain.
+ {% elif has_domain_renewal_flag and domain.is_expired and is_portfolio_user %}
+ This domain has expired, but it is still online. Contact one of the listed domain managers to renew the domain.
{% else %}
{{ domain.get_state_help_text }}
{% endif %}
diff --git a/src/registrar/templates/domain_sidebar.html b/src/registrar/templates/domain_sidebar.html
index 9d71ebf63..c9feb7200 100644
--- a/src/registrar/templates/domain_sidebar.html
+++ b/src/registrar/templates/domain_sidebar.html
@@ -80,7 +80,7 @@
{% include "includes/domain_sidenav_item.html" with item_text="Domain managers" %}
{% endwith %}
- {% if has_domain_renewal_flag and is_domain_manager and domain.is_expiring %}
+ {% if has_domain_renewal_flag and is_domain_manager and (domain.is_expiring or domain.is_expired) %}
{% with url_name="domain-renewal" %}
{% include "includes/domain_sidenav_item.html" with item_text="Renewal form" %}
{% endwith %}