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 | 9363751f1c13c3f53eea2902da81177e1cb22808 (patch) | |
tree | da91530c404b50a584f7f1848745ef6ede17848d /src/templates | |
parent | 447a371f5c2501719f0c932bacc0616a9764b433 (diff) | |
parent | eaecaacd9332e1344dea479ae65e8c005990e0ea (diff) |
Merge "Fixes Booking List"
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/booking/booking_table.html | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/templates/booking/booking_table.html b/src/templates/booking/booking_table.html index 5e82645..e0c5f49 100644 --- a/src/templates/booking/booking_table.html +++ b/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 %} |