diff options
author | Simon Rettberg | 2021-03-17 15:39:55 +0100 |
---|---|---|
committer | Simon Rettberg | 2021-03-17 15:39:55 +0100 |
commit | dc516c24685518b41bcce0751caf286dc65e471f (patch) | |
tree | c4db8569fe044752f9cf4ba58c8c5ad986a27b55 /modules-available/locations/templates/location-subnets.html | |
parent | Add missing changes (diff) | |
download | slx-admin-dc516c24685518b41bcce0751caf286dc65e471f.tar.gz slx-admin-dc516c24685518b41bcce0751caf286dc65e471f.tar.xz slx-admin-dc516c24685518b41bcce0751caf286dc65e471f.zip |
[locations/rebootcontrol] Change ENUM constants; display next event
Diffstat (limited to 'modules-available/locations/templates/location-subnets.html')
-rw-r--r-- | modules-available/locations/templates/location-subnets.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules-available/locations/templates/location-subnets.html b/modules-available/locations/templates/location-subnets.html index e954bf10..8a9b1c99 100644 --- a/modules-available/locations/templates/location-subnets.html +++ b/modules-available/locations/templates/location-subnets.html @@ -62,7 +62,7 @@ <div class="slx-bold">{{lang_locationInfo}}</div> <div class="row"> - <div class="col-md-3"> + <div class="col-md-5"> {{#haveDozmod}} <div> <span class="slx-ga2">{{lang_referencingLectures}}:</span> {{lectures}} @@ -80,14 +80,17 @@ {{/statsLink}} </div> {{/haveStatistics}} + {{#next_action}} + <div> + {{lang_nextEvent}}: {{next_action}} – {{next_time}} + </div> + {{/next_action}} </div> - <div class="col-md-3 text-center"> + <div class="col-md-7 text-right"> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#openingTimesModal{{locationid}}" onclick="loadOpeningTimes('{{locationid}}')"> <span class="glyphicon glyphicon-time"></span> {{lang_openingTime}} </button> - </div> - <div class="col-md-3 text-center"> {{#roomplanner}} <a class="btn btn-default" href="?do=roomplanner&locationid={{locationid}}" target="_blank" onclick="window.open(this.href, '_blank', 'toolbar=0,scrollbars,resizable');return false"> @@ -96,8 +99,6 @@ {{#perms.roomplanner.edit.disabled}}{{lang_showRoomplan}}{{/perms.roomplanner.edit.disabled}} </a> {{/roomplanner}} - </div> - <div class="col-md-3 text-right"> <button {{perms.location.delete.disabled}} type="button" class="btn btn-danger" data-toggle="modal" data-target="#deleteLocationModal{{locationid}}"><span class="glyphicon glyphicon-trash"></span> {{lang_deleteLocation}}</button> <button onclick="deleteSubnetWarning('{{locationid}}')" {{perms.save_button.disabled}} type="button" class="btn btn-primary"><span class="glyphicon glyphicon-floppy-disk"></span> {{lang_save}}</button> </div> |