summaryrefslogtreecommitdiff
path: root/includes/pages/admin_shifts.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2015-08-14 12:42:18 +0200
committerPhilip Häusler <msquare@notrademark.de>2015-08-14 12:42:18 +0200
commitfc0d97344eb73c12709c3d702df8598daf9e9111 (patch)
tree8e96f6819a51f9e7435e4fe0d1370ff67d045ba7 /includes/pages/admin_shifts.php
parenta30af6e46bf536442635094f6add54154c4048be (diff)
made shift creation angeltypes smaller (like room editing)
Diffstat (limited to 'includes/pages/admin_shifts.php')
-rw-r--r--includes/pages/admin_shifts.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/pages/admin_shifts.php b/includes/pages/admin_shifts.php
index df8a7e04..346e9046 100644
--- a/includes/pages/admin_shifts.php
+++ b/includes/pages/admin_shifts.php
@@ -293,7 +293,7 @@ function admin_shifts() {
$room_select = html_select_key('rid', 'rid', $room_array, $_REQUEST['rid']);
$angel_types = "";
foreach ($types as $type)
- $angel_types .= form_spinner('type_' . $type['id'], $type['name'], $needed_angel_types[$type['id']]);
+ $angel_types .= '<div class="col-md-4">' . form_spinner('type_' . $type['id'], $type['name'], $needed_angel_types[$type['id']]) . '</div>';
return page_with_title(admin_shifts_title(), array(
msg(),
@@ -316,7 +316,7 @@ function admin_shifts() {
form_info(_("Needed angels"), ''),
form_radio('angelmode', _("Take needed angels from room settings"), $angelmode == 'location', 'location'),
form_radio('angelmode', _("The following angels are needed"), $angelmode == 'manually', 'manually'),
- $angel_types,
+ '<div class="row">'.$angel_types.'</div>',
'</div>',
'</div>',
form_submit('preview', _("Preview"))