From 3379ea10b2d20560de877c053f32309ee126b474 Mon Sep 17 00:00:00 2001 From: msquare Date: Tue, 12 Dec 2017 22:04:12 +0100 Subject: improve public dashboard --- includes/view/PublicDashboard_view.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/view/PublicDashboard_view.php b/includes/view/PublicDashboard_view.php index f1791e53..b80ca515 100644 --- a/includes/view/PublicDashboard_view.php +++ b/includes/view/PublicDashboard_view.php @@ -18,7 +18,9 @@ function public_dashboard_view($stats, $free_shifts) '' ]), div('container-fluid first', [ - heading(_('Needed angels:'), 1), + div('col-xs-12', [ + heading(_('Needed angels:'), 1) + ]), join($shift_panels) ]) ]); @@ -38,7 +40,7 @@ function public_dashborad_shift_render($shift) } $panel_body = glyph('time') . date('H:i', $shift['start']) . ' - ' . date('H:i', $shift['end']); - $panel_body .= ' (' . round(($shift['end'] - $shift['start']) / 3600) . ')'; + $panel_body .= ' (' . round(($shift['end'] - $shift['start']) / 3600) . ' h)'; $panel_body .= '
' . glyph('tasks') . ShiftType($shift['shifttype_id'])['name']; if (! empty($shift['title'])) { -- cgit v1.2.3-54-g00ecf