diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-20 16:18:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-03-20 16:18:59 +0000 |
commit | a85015aaff008213fe5c766bd90b35e641e5b2d4 (patch) | |
tree | 0d965164c9acc6bff238f5840c92ada8033eba5b /dashboard/src/templates/booking | |
parent | 08c71605bf39d7a44e82ff5c7c8740b321108259 (diff) | |
parent | 3e07f1c67f6e5ff82ff11c63f9aac618a33a2749 (diff) |
Merge "Fixes Booking List"
Diffstat (limited to 'dashboard/src/templates/booking')
-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 %} |