Merge "Restrict Postgres to version 10"
[pharos-tools.git] / dashboard / src / templates / booking / booking_table.html
index 655b013..5e82645 100644 (file)
@@ -3,10 +3,11 @@
 
 <thead>
 <tr>
-    <th>User</th>
+    <th>Owner</th>
     <th>Purpose</th>
     <th>Start</th>
     <th>End</th>
+    <th>Operating System</th>
     <th>Installer</th>
     <th>Scenario</th>
 </tr>
@@ -15,7 +16,7 @@
 {% for booking in bookings %}
     <tr>
         <td>
-            {{ booking.user.username }}
+            {{ booking.owner.username }}
         </td>
         <td>
             {{ booking.purpose }}
@@ -26,6 +27,9 @@
         <td>
             {{ booking.end }}
         </td>
+        <td>
+            {{ booking.opsys }}
+        </td>
         <td>
             {{ booking.installer }}
         </td>
@@ -34,4 +38,4 @@
         </td>
     </tr>
 {% endfor %}
-</tbody>
\ No newline at end of file
+</tbody>