From e181d6838ea32918c2f0c8b0789e8b2a0c8ce0f0 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 23 Apr 2024 11:34:42 -0600 Subject: [PATCH] add state display --- src/registrar/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/admin.py b/src/registrar/admin.py index acfbd77f7..ef65b37b1 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -1750,7 +1750,7 @@ class DomainAdmin(ListHeaderAdmin): extra_context["original_object"] = domain.domain_info extra_context["state_help_message"] = Domain.State.get_admin_help_text(domain.state) - extra_context["domain_state"] = domain.state + extra_context["domain_state"] = domain.get_state_display() # Pass in what the an extended expiration date would be for the expiration date modal self._set_expiration_date_context(domain, extra_context)