diff options
author | zsloan | 2022-02-23 21:43:57 +0000 |
---|---|---|
committer | zsloan | 2022-02-23 16:20:52 -0600 |
commit | 348e506ce811f4f314b7c9e52073bf03aeb70d50 (patch) | |
tree | cc21a096c8a3abc9876092cb59ae34c619536d44 | |
parent | abdc642cea9ab40f5e71d65abaab0362bc5df74b (diff) | |
download | genenetwork2-348e506ce811f4f314b7c9e52073bf03aeb70d50.tar.gz |
Reposition Partial Correlations and Heatmap buttons
Moved Partial Correlations and Generate Heatmap buttons to be lined up
below the other buttons and hide the Heatmap orientation selection (JS
will be added to show it after Heatmap is run)
-rw-r--r-- | wqflask/wqflask/templates/collections/view.html | 81 |
1 files changed, 42 insertions, 39 deletions
diff --git a/wqflask/wqflask/templates/collections/view.html b/wqflask/wqflask/templates/collections/view.html index 3e3d3972..447a821a 100644 --- a/wqflask/wqflask/templates/collections/view.html +++ b/wqflask/wqflask/templates/collections/view.html @@ -33,48 +33,51 @@ </form> </div> - - <form id="partial-correlations-form" - method="POST" - action="{{url_for('partial_correlations')}}"> - <input type="hidden" - id="collection_uuid" - value="{{uc.uc_id}}" /> - <input type="hidden" - name="traits_list" - value="{% for this_trait in trait_obs %}{{ this_trait.name }}:::{{ this_trait.dataset.name }}:::{{this_trait.symbol}}:::{{this_trait.description_display}}:::{{this_trait.location_repr}}:::{{this_trait.mean}}:::{{this_trait['LRS_location_repr']}}:::{{data_hmac('{}:{}'.format(this_trait.name, this_trait.dataset.name))}}|||{% endfor %}" /> - <button id="run-partial-correlations" - class="btn btn-primary" - title="Run partial correlations" - type="submit" style="margin-top: 10px;"> - Partial Correlations - </button> - </form> + <div style="display: flex;"> + <form id="partial-correlations-form" + method="POST" + action="{{url_for('partial_correlations')}}"> + <input type="hidden" + id="collection_uuid" + value="{{uc.uc_id}}" /> + <input type="hidden" + name="traits_list" + value="{% for this_trait in trait_obs %}{{ this_trait.name }}:::{{ this_trait.dataset.name }}:::{{this_trait.symbol}}:::{{this_trait.description_display}}:::{{this_trait.location_repr}}:::{{this_trait.mean}}:::{{this_trait['LRS_location_repr']}}:::{{data_hmac('{}:{}'.format(this_trait.name, this_trait.dataset.name))}}|||{% endfor %}" /> + <button id="run-partial-correlations" + class="btn btn-primary" + title="Run partial correlations" + type="submit" style="margin-top: 10px;"> + Partial Correlations + </button> + </form> + + <form id="heatmaps_form"> + <div style="display: none;"> + <fieldset> + <legend>Heatmap Orientation</legend> + <label for="heatmap-orient-vertical">Vertical</label> + <input id="heatmap-orient-vertical" + type="radio" + name="vertical" + value="true" /> + <label for="heatmap-orient-horizontal">Horizontal</label> + <input id="heatmap-orient-horizontal" + type="radio" + name="vertical" + value="false" /> + </fieldset> + </div> + <button id="clustered-heatmap" + class="btn btn-primary" + data-url="{{heatmap_data_url}}" + title="Generate heatmap from this collection" style="margin-top: 10px;"> + Generate Heatmap + </button> + </form> + </div> <div> <br /> - <form id="heatmaps_form"> - <fieldset> - <legend>Heatmap Orientation</legend> - <label for="heatmap-orient-vertical">Vertical</label> - <input id="heatmap-orient-vertical" - type="radio" - name="vertical" - value="true" /> - <label for="heatmap-orient-horizontal">Horizontal</label> - <input id="heatmap-orient-horizontal" - type="radio" - name="vertical" - value="false" /> - </fieldset> - <button id="clustered-heatmap" - class="btn btn-primary" - data-url="{{heatmap_data_url}}" - title="Generate heatmap from this collection"> - Generate Heatmap - </button> - </form> - <div class="collection-table-options"> <form id="export_form" method="POST" action="/export_traits_csv"> <button class="btn btn-default" id="select_all" type="button"><span class="glyphicon glyphicon-ok"></span> Select All</button> |