more infos in shift view

This commit is contained in:
Felix Favre 2014-12-17 19:16:40 +01:00 committed by Philip Häusler
parent 038bf97178
commit 2f20540a6b
1 changed files with 8 additions and 1 deletions

View File

@ -547,7 +547,14 @@ function view_user_shifts() {
// qqqqqq
$is_free = false;
$shifts_row = '<a href="' . shift_link($shift) . '">' . $shift['name'] . '</a>';
$shifts_row = date('d.m. H:i', $shift['start']);
$shifts_row .= " &ndash; ";
$shifts_row .= date('H:i', $shift['end']);
$shifts_row .= "<br /><b>";
$shifts_row .= $shift['name'];
$shifts_row .= "</b><br />";
$shifts_row .= '<a href="' . shift_link($shift) . '">' . $shift['name'] . '</a>';
$shifts_row .= "<br />";
if (in_array('admin_shifts', $privileges))
$shifts_row .= ' ' . table_buttons(array(
button(page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'], glyph('edit'), 'btn-xs'),