Merge pull request #557 from alphagov/notification_show_updated_at

Notifications display updated_at instead of created_at.
This commit is contained in:
minglis
2016-05-11 16:55:37 +01:00
5 changed files with 11 additions and 3 deletions

View File

@@ -27,7 +27,7 @@
align='right',
status='error' if item.status == 'Failed' else 'default'
) %}
{{ item.status|title }} at {{ item.sent_at|format_time }}
{{ item.status|title }} at {{ item.updated_at|format_time }}
{% endcall %}
{% endcall %}
</div>

View File

@@ -94,7 +94,7 @@
{{ text_field(item.status|capitalize) }}
{% call field(align='right') %}
{{ item.created_at|format_datetime_short }}
{{ item.updated_at|format_datetime_short }}
{% endcall %}
{% endcall %}