mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-05 09:21:54 +02:00
12 lines
479 B
HTML
12 lines
479 B
HTML
{% if domain.expiration_date or domain.created_at %}
|
|
<p>
|
|
{% if domain.expiration_date %}
|
|
<strong class="text-primary-dark">Date of expiration:</strong>
|
|
{{ domain.expiration_date|date }}
|
|
{% if domain.is_expired %} <span class="text-error"><strong>(expired)</strong></span>{% endif %}
|
|
<br/>
|
|
{% endif %}
|
|
{% if domain.created_at %}
|
|
<strong class="text-primary-dark">Date created:</strong> {{ domain.created_at|date }}{% endif %}
|
|
</p>
|
|
{% endif %}
|