From aee434a148ce19cdf4cc132c67c8887542a82158 Mon Sep 17 00:00:00 2001 From: Jared Cosulich Date: Fri, 14 Apr 2017 14:23:10 -0400 Subject: [PATCH] show times in EST --- app/views/recipients/show.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/recipients/show.html.haml b/app/views/recipients/show.html.haml index b6bd139c..1fd970f0 100644 --- a/app/views/recipients/show.html.haml +++ b/app/views/recipients/show.html.haml @@ -49,11 +49,11 @@ - if (recipient_schedule = @recipient.recipient_schedules.first).present? %p %strong Last Attempt At: - = recipient_schedule.last_attempt_at.strftime('%m-%e-%y %H:%M') + = recipient_schedule.last_attempt_at.in_time_zone('Eastern Time (US & Canada)').strftime('%m-%e-%y %H:%M') %p %strong Next Attempt At: - = recipient_schedule.next_attempt_at.strftime('%m-%e-%y %H:%M') + = recipient_schedule.next_attempt_at.in_time_zone('Eastern Time (US & Canada)').strftime('%m-%e-%y %H:%M') = link_to 'Edit', edit_school_recipient_path(@school, @recipient) |