diff options
Diffstat (limited to 'src/templates/base/booking')
-rw-r--r-- | src/templates/base/booking/booking_detail.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/templates/base/booking/booking_detail.html b/src/templates/base/booking/booking_detail.html index 24a654c..a014fea 100644 --- a/src/templates/base/booking/booking_detail.html +++ b/src/templates/base/booking/booking_detail.html @@ -38,10 +38,6 @@ <td>{{ booking.resource.template }}</td> </tr> <tr> - <td>Pod Configuration</td> - <td>{{ booking.config_bundle }}</td> - </tr> - <tr> <td>Lab Deployed At</td> <td>{{ booking.lab }}</td> </tr> @@ -55,13 +51,14 @@ </div> <div class="collapse show" id="pod_panel"> <div class="card-body"> + <h4>{{host.bundle.template.copy_of.name}}</h4> {% for host in booking.resource.get_resources %} - <h4>{{host.bundle.template.copy_of.name}}</h4> + <h4>{{host.config.name}}</h4> <div class="overflow-auto"> <table class="table m-0"> <tr> <td>Hostname:</td> - <td>{{host.name}}</td> + <td>{{host.config.name}}</td> </tr> <tr> <td>Machine:</td> @@ -72,9 +69,12 @@ <td>{{host.template.opnfvRole}}</td> </tr> <tr> + <td>Is Headnode:</td> + <td>{{host.config.is_head_node}}</td> + <tr> <td>Image:</td> <td id="host_image_{{host.id}}"> - {{host.config.Image}} + {{host.config.image}} <button class="btn btn-primary ml-4" data-toggle="modal" |