diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-18 13:20:12 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-18 13:20:12 -0400 |
commit | 3e07f1c67f6e5ff82ff11c63f9aac618a33a2749 (patch) | |
tree | 54a8f301d66a42889c967f87f59603d942c431e2 /dashboard/src/templates | |
parent | f2130761e1b0eb83965cb5f502aa0ef5ff6b7b1e (diff) |
Fixes Booking List
Adds project collumn, removed Installer and Scenario, and correctly
populates the operating system collumn.
Change-Id: I8af778c66fa248832ad98188d0c93bbc84027c55
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'dashboard/src/templates')
-rw-r--r-- | dashboard/src/templates/booking/booking_table.html | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/dashboard/src/templates/booking/booking_table.html b/dashboard/src/templates/booking/booking_table.html index 5e82645..e0c5f49 100644 --- a/dashboard/src/templates/booking/booking_table.html +++ b/dashboard/src/templates/booking/booking_table.html @@ -5,11 +5,10 @@ <tr> <th>Owner</th> <th>Purpose</th> + <th>Project</th> <th>Start</th> <th>End</th> <th>Operating System</th> - <th>Installer</th> - <th>Scenario</th> </tr> </thead> <tbody> @@ -22,19 +21,16 @@ {{ booking.purpose }} </td> <td> - {{ booking.start }} - </td> - <td> - {{ booking.end }} + {{ booking.project }} </td> <td> - {{ booking.opsys }} + {{ booking.start }} </td> <td> - {{ booking.installer }} + {{ booking.end }} </td> <td> - {{ booking.scenario }} + {{ booking.resource.get_host.config.image.os.name }} </td> </tr> {% endfor %} |