From 2a634c9262e7f51a7802b69b9ba51641711f2ad4 Mon Sep 17 00:00:00 2001 From: maxbr Date: Thu, 25 Aug 2016 12:10:55 +0200 Subject: Add a Resource detail view JIRA: RELENG-12 The resource page contains an utilization diagram, future bookings with their jira tickets and a list of servers. Change-Id: I2123ccbe96cde29a56af32b933ebbf6ba2668ed1 Signed-off-by: maxbr --- .../templates/booking/booking_table.html | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pharos-dashboard/templates/booking/booking_table.html (limited to 'pharos-dashboard/templates/booking') diff --git a/pharos-dashboard/templates/booking/booking_table.html b/pharos-dashboard/templates/booking/booking_table.html new file mode 100644 index 0000000..3d0b757 --- /dev/null +++ b/pharos-dashboard/templates/booking/booking_table.html @@ -0,0 +1,33 @@ +{% load jira_filters %} + + + + + User + Purpose + Start + End + Jira + + + +{% for booking in bookings %} + + + {{ booking.user.username }} + + + {{ booking.purpose }} + + + {{ booking.start }} + + + {{ booking.end }} + + {{ booking.get_jira_issue }} + + +{% endfor %} + \ No newline at end of file -- cgit 1.2.3-korg