From 0c836b1cacfa0a6cbba25dda449259391a282ca6 Mon Sep 17 00:00:00 2001 From: Adrian Turjak Date: Tue, 13 Feb 2018 15:41:51 +1300 Subject: [PATCH] rename request date for notifications correctly Change-Id: I24e61408711434044aa69eebeaa27dd323c1509d --- adjutant_ui/content/notifications/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adjutant_ui/content/notifications/tables.py b/adjutant_ui/content/notifications/tables.py index d1a0930..d3c9546 100644 --- a/adjutant_ui/content/notifications/tables.py +++ b/adjutant_ui/content/notifications/tables.py @@ -77,7 +77,7 @@ class NotificationTable(tables.DataTable): link=get_task_link) error = tables.Column('error', verbose_name=_('Error')) created_on = tables.Column('created_on', - verbose_name=_('Request Date')) + verbose_name=_('Created On')) notes = tables.Column('notes') class Meta(object):