summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/src/templates/booking/booking_list.html
diff options
context:
space:
mode:
authormaxbr <maxbr@mi.fu-berlin.de>2017-07-27 12:51:47 +0200
committermaxbr <maxbr@mi.fu-berlin.de>2017-07-27 12:56:48 +0200
commitb21ea724ac619f218d6e18ee2439492609d5755b (patch)
treee532e9112fc6a3785a4c623c6710617b5a58a910 /tools/pharos-dashboard/src/templates/booking/booking_list.html
parent7cbe4e7447280d39fdb5a56b3d9a0fea437b5b15 (diff)
Fix Booking API
This fixes a server error for the booking REST api and some html errors. Change-Id: I86475967bbc8cd4c8f82f62e03789f1c9752d446 Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/src/templates/booking/booking_list.html')
-rw-r--r--tools/pharos-dashboard/src/templates/booking/booking_list.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/pharos-dashboard/src/templates/booking/booking_list.html b/tools/pharos-dashboard/src/templates/booking/booking_list.html
index f2991e4c..ccdc46d7 100644
--- a/tools/pharos-dashboard/src/templates/booking/booking_list.html
+++ b/tools/pharos-dashboard/src/templates/booking/booking_list.html
@@ -13,8 +13,6 @@
{% block content %}
<div class="row">
- <div class="col-lg-12">
- <div class="panel panel-default">
<div class="panel-body">
<div class="dataTables_wrapper">
<table class="table table-striped table-bordered table-hover" id="table"
@@ -24,9 +22,7 @@
</table>
</div>
<!-- /.table-responsive -->
- </div>
<!-- /.panel-body -->
- </div>
<!-- /.panel -->
</div>
<!-- /.col-lg-12 -->
@@ -44,7 +40,9 @@
<script type="text/javascript">
$(document).ready(function () {
- $('#table').DataTable({});
+ $('#table').DataTable({
+ scrollX: true,
+ });
});
</script>
-{% endblock extrajs %} \ No newline at end of file
+{% endblock extrajs %}