Room page: Add edit/delete buttons

This commit is contained in:
Igor Scheller 2020-09-12 23:14:38 +02:00 committed by msquare
parent bd2994eea7
commit 8ff9b8b9b9
1 changed files with 13 additions and 1 deletions

View File

@ -53,7 +53,19 @@ function Room_view($room, ShiftsFilterRenderer $shiftsFilterRenderer, ShiftCalen
return page_with_title(glyph('map-marker') . $room['Name'], [
$assignNotice,
$description,
tabs($tabs, $selected_tab)
auth()->can('admin_rooms') ? buttons([
button(
page_link_to('admin_rooms', ['show' => 'edit', 'id' => $room->id]),
__('edit'),
'btn'
),
button(
page_link_to('admin_rooms', ['show' => 'delete', 'id' => $room->id]),
__('delete'),
'btn'
)
]) : '',
tabs($tabs, $selected_tab),
], true);
}