diff --git a/src/registrar/models/domain.py b/src/registrar/models/domain.py index 217b88202..b9b82f3cf 100644 --- a/src/registrar/models/domain.py +++ b/src/registrar/models/domain.py @@ -1585,6 +1585,8 @@ class Domain(TimeStampedModel, DomainHelper): help_text = ( "This domain has expired, but it is still online. " "To renew this domain, contact help@get.gov." ) + elif flag_is_active(self, "domain_renewal") and self.is_expiring(): + help_text = "This domain will expire soon. Contact one of the listed domain managers to renew the domain." else: help_text = Domain.State.get_help_text(self.state)