domain-watchdog/templates/rss/status_entry.html.twig
2025-04-27 12:13:06 +02:00

24 lines
605 B
Twig

<p>
The EPP status of this domain name has changed:
</p>
{% if domainStatus.addStatus is not empty %}
<p><strong>Added statuses:</strong></p>
<ul>
{% for status in domainStatus.addStatus %}
<li>{{ status }}</li>
{% endfor %}
</ul>
{% endif %}
{% if domainStatus.deleteStatus is not empty %}
<p><strong>Deleted statuses:</strong></p>
<ul>
{% for status in domainStatus.deleteStatus %}
<li>{{ status }}</li>
{% endfor %}
</ul>
{% endif %}
<p><strong>Change date:</strong> {{ domainStatus.date|date('Y-m-d H:i:s') }}</p>