diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-05-22 13:42:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-05-22 13:42:04 +0000 |
commit | bbf16082137c2b7ab7c38ad92fc87a16d2a6e182 (patch) | |
tree | 4046020e8aa8e3dbf7836cdce1df54da273bdd34 | |
parent | fb36d78022b4b6f6a7ffffb94464836026bc042c (diff) | |
parent | 2fd2b83361813e0a8375d81729c86adcb2c6feda (diff) |
Merge "Fix expand animation on booking detail page"
-rw-r--r-- | src/templates/booking/booking_detail.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/templates/booking/booking_detail.html b/src/templates/booking/booking_detail.html index 44fca98..ac00e22 100644 --- a/src/templates/booking/booking_detail.html +++ b/src/templates/booking/booking_detail.html @@ -25,7 +25,7 @@ <h4 style="display: inline;">Overview</h4> <a data-toggle="collapse" data-target="#panel_overview" class="btn pull-right" style="line-height: 1;">Expand</a> </div> - <div class="panel-body" id="panel_overview"> + <div class="panel-body collapse in" id="panel_overview"> <table class="table"> <tr> <td>Purpose</td> @@ -65,7 +65,7 @@ <h4 style="display: inline;">Pod</h4> <a data-toggle="collapse" data-target="#pod_panel" class="btn pull-right" style="line-height: 1;" >Expand</a> </div> - <div class="panel-body pod_panel" id="pod_panel"> + <div class="panel-body pod_panel collapse in" id="pod_panel"> <table class="table"> {% for host in booking.resource.hosts.all %} <tr> @@ -184,7 +184,7 @@ <p style="display: inline; margin-left: 10px;"> These are the different tasks that have to be completed before your deployment is ready</p> <a data-toggle="collapse" data-target="#panel_tasks" class="btn pull-right" style="line-height: 1;" >Expand</a> </div> - <div class="panel-body" id="panel_tasks"> + <div class="panel-body collapse in" id="panel_tasks"> <table class="table"> <style> .progress { @@ -275,7 +275,7 @@ <h4 style="display: inline;">PDF</h4> <a data-toggle="collapse" data-target="#pdf_panel" class="btn pull-right" style="line-height: 1;" >Expand</a> </div> - <div class="panel-body" id="pdf_panel" style="padding: 0px;"> + <div class="panel-body collapse in" id="pdf_panel" style="padding: 0px;"> <pre class="prettyprint lang-yaml" style="margin: 0px; padding: 15px; border: none;"> {{pdf}} </pre> |