Fix Booking API 67/38267/1
authormaxbr <maxbr@mi.fu-berlin.de>
Thu, 27 Jul 2017 10:51:47 +0000 (12:51 +0200)
committermaxbr <maxbr@mi.fu-berlin.de>
Thu, 27 Jul 2017 10:56:48 +0000 (12:56 +0200)
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>
tools/pharos-dashboard/src/api/serializers.py
tools/pharos-dashboard/src/templates/account/user_list.html
tools/pharos-dashboard/src/templates/booking/booking_list.html
tools/pharos-dashboard/src/templates/dashboard/ci_pods.html
tools/pharos-dashboard/src/templates/dashboard/dev_pods.html
tools/pharos-dashboard/src/templates/dashboard/jenkins_slaves.html
tools/pharos-dashboard/src/templates/dashboard/table.html
tools/pharos-dashboard/src/templates/layout.html

index f8f02a2..237ca02 100644 (file)
@@ -13,10 +13,9 @@ from rest_framework import serializers
 from booking.models import Booking
 from dashboard.models import Server, Resource, ResourceStatus
 
-
 class BookingSerializer(serializers.ModelSerializer):
-    installer_name = serializers.RelatedField(source='installer', read_only=True)
-    scenario_name = serializers.RelatedField(source='scenario', read_only=True)
+    installer_name = serializers.CharField(source='installer.name')
+    scenario_name = serializers.CharField(source='scenario.name')
 
     class Meta:
         model = Booking
@@ -37,4 +36,4 @@ class ResourceSerializer(serializers.ModelSerializer):
 class ResourceStatusSerializer(serializers.ModelSerializer):
     class Meta:
         model = ResourceStatus
-        fields = ('id', 'resource', 'timestamp','type', 'title', 'content')
\ No newline at end of file
+        fields = ('id', 'resource', 'timestamp','type', 'title', 'content')
index f18e161..68178eb 100644 (file)
@@ -47,6 +47,7 @@
     <script type="text/javascript">
         $(document).ready(function () {
             $('#table').DataTable({
+               scrollX: true,
                 "order": [[0, "asc"]]
             });
         });
index f2991e4..ccdc46d 100644 (file)
@@ -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 %}
index 7ef62a4..a20be95 100644 (file)
@@ -50,6 +50,7 @@
     <script type="text/javascript">
         $(document).ready(function () {
             $('#table').DataTable({
+               scrollX: true,
                 columnDefs: [
                     {type: 'status', targets: 2}
                 ],
@@ -57,4 +58,4 @@
             });
         });
     </script>
-{% endblock tablejs %}
\ No newline at end of file
+{% endblock tablejs %}
index 2b4b017..a6f3b2e 100644 (file)
@@ -59,6 +59,7 @@
     <script type="text/javascript">
         $(document).ready(function () {
             $('#table').DataTable({
+               scrollX: true,
                 columnDefs: [
                     {type: 'status', targets: 6}
                 ],
@@ -66,4 +67,4 @@
             });
         });
     </script>
-{% endblock tablejs %}
\ No newline at end of file
+{% endblock tablejs %}
index aa74507..fa361b1 100644 (file)
@@ -35,6 +35,7 @@
     <script type="text/javascript">
         $(document).ready(function () {
             $('#table').DataTable({
+               scrollX: true,
                 columnDefs: [
                     {type: 'status', targets: 1}
                 ],
@@ -42,4 +43,4 @@
             });
         });
     </script>
-{% endblock tablejs %}
\ No newline at end of file
+{% endblock tablejs %}
index addd5c1..d59f0e3 100644 (file)
@@ -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" cellspacing="0"
                                width="100%">
@@ -25,9 +23,7 @@
                         </table>
                     </div>
                     <!-- /.table-responsive -->
-                </div>
                 <!-- /.panel-body -->
-            </div>
             <!-- /.panel -->
         </div>
         <!-- /.col-lg-12 -->
@@ -36,9 +32,6 @@
 
 {% block extrajs %}
     <!-- DataTables JavaScript -->
-    <link href="{% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css" %}"
-          rel="stylesheet">
-
 
     <script src={% static "bower_components/datatables/media/js/jquery.dataTables.min.js" %}></script>
     <script src={% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js" %}></script>
@@ -47,4 +40,4 @@
 
     {% block tablejs %}
     {% endblock tablejs %}
-{% endblock extrajs %}
\ No newline at end of file
+{% endblock extrajs %}
index 64fed4a..9578e15 100644 (file)
@@ -20,7 +20,7 @@
     <link href="{% static "bower_components/metisMenu/dist/metisMenu.min.css" %}" rel="stylesheet">
 
     <!-- Custom CSS -->
-    <link href="{% static "bower_components/startbootstrap-sb-admin-2-blackrockdigital/dist/css/sb-admin-2.css" %}"
+    <link href="{% static "bower_components/startbootstrap-sb-admin-2-blackrockdigital/dist/css/sb-admin-2.min.css" %}"
           rel="stylesheet">
     <link href="{% static "css/theme.css" %}" rel="stylesheet">
 
@@ -65,7 +65,7 @@
 <script src="{% static "bower_components/metisMenu/dist/metisMenu.min.js" %}"></script>
 
 <!-- Custom Theme JavaScript -->
-<script src="{% static "bower_components/startbootstrap-sb-admin-2-blackrockdigital/dist/js/sb-admin-2.js" %}"></script>
+<script src="{% static "bower_components/startbootstrap-sb-admin-2-blackrockdigital/dist/js/sb-admin-2.min.js" %}"></script>
 
 {% block extrajs %}
 {% endblock extrajs %}