diff --git a/src/registrar/templates/domain_detail.html b/src/registrar/templates/domain_detail.html index 2aa4f3c19..08eebfda1 100644 --- a/src/registrar/templates/domain_detail.html +++ b/src/registrar/templates/domain_detail.html @@ -34,7 +34,7 @@ {% include "includes/summary_item.html" with title='DNS name servers' domains='true' value=domain.nameservers list='true' edit_link=url editable=domain.is_editable %} {% else %} {% if domain.is_editable %} -
No DNS name servers have been added yet. Before your domain can be used we’ll need information about your domain name servers.
Add DNS name servers {% else %} diff --git a/src/registrar/templates/includes/domain_dates.html b/src/registrar/templates/includes/domain_dates.html index 3a4fbdfff..525de1fb9 100644 --- a/src/registrar/templates/includes/domain_dates.html +++ b/src/registrar/templates/includes/domain_dates.html @@ -1,10 +1,12 @@ {% if domain.expiration_date or domain.created_at %} -
+ {% if domain.expiration_date %}
+ Expires:
+ {{ domain.expiration_date|date }}
+ {% if domain.is_expired %} (expired){% endif %}
+
+ {% endif %}
+ {% if domain.created_at %}
+ Date created: {{ domain.created_at|date }}{% endif %}
+