aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/lfedge/booking/booking_table.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/lfedge/booking/booking_table.html')
-rw-r--r--src/templates/lfedge/booking/booking_table.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/templates/lfedge/booking/booking_table.html b/src/templates/lfedge/booking/booking_table.html
deleted file mode 100644
index 4020b5e..0000000
--- a/src/templates/lfedge/booking/booking_table.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-<thead>
-<tr>
- <th>Owner</th>
- <th>Purpose</th>
- <th>Project</th>
- <th>Start</th>
- <th>End</th>
- <th>Operating System</th>
- <th>Pod</th>
-</tr>
-</thead>
-<tbody>
-{% for booking in bookings %}
- <tr>
- <td>
- {{ booking.owner.username }}
- </td>
- <td>
- {{ booking.purpose }}
- </td>
- <td>
- {{ booking.project }}
- </td>
- <td>
- {{ booking.start }}
- </td>
- <td>
- {{ booking.end }}
- </td>
- <td>
- {{ booking.resource.get_head_node.config.image.os.name }}
- </td>
- <td>
- {{ booking.resource.get_template_name }}
- </td>
- </tr>
-{% endfor %}
-</tbody>