Notification History ({{ logs|length }})

{% if logs is not empty %}
{% endif %}
{% if logs is empty %}

No notifications sent yet

{% else %}
{% for log in logs %} {% set nt = log.notification_type|default('') %} {% set logType = (nt == 'expired' or (nt|slice(0, 13)) == 'expiring_in_') ? 'expiration' : (((nt|slice(0, 7)) == 'domain_') ? 'status' : ((nt == 'dns_change') ? 'dns' : 'other')) %} {% endfor %}
Channel Status Date Message
{{ log.channel_type|capitalize }} {% set logStatusClass = log.status == 'sent' ? 'bg-green-100 dark:bg-green-500/10 text-green-800 dark:text-green-400' : 'bg-red-100 dark:bg-red-500/10 text-red-800 dark:text-red-400' %} {{ log.status|capitalize }} {{ log.sent_at|date('M j, H:i') }} {{ log.message }}
{% endif %}
{% if logs is not empty %} {% endif %}