improve public dashboard

This commit is contained in:
msquare 2017-12-12 22:00:29 +01:00
parent ff94df53d6
commit 59b8e76d12
1 changed files with 6 additions and 3 deletions

View File

@ -38,6 +38,7 @@ function public_dashborad_shift_render($shift)
} }
$panel_body = glyph('time') . date('H:i', $shift['start']) . ' - ' . date('H:i', $shift['end']); $panel_body = glyph('time') . date('H:i', $shift['start']) . ' - ' . date('H:i', $shift['end']);
$panel_body .= ' (' . round(($shift['end'] - $shift['start']) / 3600) . ')';
$panel_body .= '<br>' . glyph('tasks') . ShiftType($shift['shifttype_id'])['name']; $panel_body .= '<br>' . glyph('tasks') . ShiftType($shift['shifttype_id'])['name'];
if (! empty($shift['title'])) { if (! empty($shift['title'])) {
@ -55,10 +56,12 @@ function public_dashborad_shift_render($shift)
$panel_body = '<a href="' . shift_link($shift) . '">' . $panel_body . '</a>'; $panel_body = '<a href="' . shift_link($shift) . '">' . $panel_body . '</a>';
return div('panel panel-' . $style . ' col-xs-3', [ return div('col-xs-3', [
div('panel panel-' . $style, [
div('panel-body', [ div('panel-body', [
heading($panel_body, 4) heading($panel_body, 4)
]) ])
])
]); ]);
} }
?> ?>