From 590790732db03e993da5dadde787f7f630146449 Mon Sep 17 00:00:00 2001 From: Ana Date: Wed, 11 May 2016 16:40:04 +0200 Subject: [PATCH] travel schedule problem fixed --- app/views/conference_registrations/show.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/conference_registrations/show.html.haml b/app/views/conference_registrations/show.html.haml index 8659277c..dd73e70b 100644 --- a/app/views/conference_registrations/show.html.haml +++ b/app/views/conference_registrations/show.html.haml @@ -26,14 +26,14 @@ - if @registration.arrival.present? arrive at %strong - = @registration.arrival.strftime('%A, %B %-d. %Y %H:%m') + = @registration.arrival.strftime('%A, %B %-d. %Y %H:%M') - else You haven't scheduled your arrival %li - if @registration.departure.present? depart at %strong - = @registration.departure.strftime('%A, %B %-d. %Y %H:%m') + = @registration.departure.strftime('%A, %B %-d. %Y %H:%M') - else You haven't scheduled your departure - if @conference.questions.any?