mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
If a message has been sent with a test key it’s a bit confusing to just say ‘Delivered’ on the page, because it hasn’t gone to anyone’s phone. So this commit adds a bit of hint text to disambiguate what ‘Delivered’ actually means in this context.
17 lines
605 B
HTML
17 lines
605 B
HTML
<div class="ajax-block-container">
|
|
<p class="notification-status {{ notification.status|format_notification_status_as_field_status(notification.notification_type) }}">
|
|
{% if notification.status|format_notification_status_as_url %}
|
|
<a href="{{ notification.status|format_notification_status_as_url }}">
|
|
{% endif %}
|
|
{{ notification.status|format_notification_status(
|
|
notification.template.template_type
|
|
) }}
|
|
{% if notification.status|format_notification_status_as_url %}
|
|
</a>
|
|
{% endif %}
|
|
{% if sent_with_test_key %}
|
|
(test)
|
|
{% endif %}
|
|
</p>
|
|
</div>
|