mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 05:29:38 -04:00
Don’t change colour of sent date for letters
For text messages/emails it makes sense for ‘sending’ to be gray and ‘delivered’ to be black. But since we don’t show sending/delivered for letters it doesn’t make sense for the text to change colour.
This commit is contained in:
@@ -130,7 +130,10 @@
|
||||
{% if not notification %}
|
||||
{% call field(align='right') %}{% endcall %}
|
||||
{% else %}
|
||||
{% call field(status=notification.status|format_notification_status_as_field_status, align='right') %}
|
||||
{% call field(
|
||||
status=notification.status|format_notification_status_as_field_status(notification.notification_type),
|
||||
align='right'
|
||||
) %}
|
||||
{% if notification.status in ['created', 'sending', 'delivered'] %}<span class="align-with-message-body">{% endif %}
|
||||
{% if notification.status|format_notification_status_as_url %}
|
||||
<a href="{{ notification.status|format_notification_status_as_url }}">
|
||||
|
||||
Reference in New Issue
Block a user