Skip to content

Commit

Permalink
Fix: minor html validity issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnikz committed Sep 12, 2024
1 parent f25ba1e commit c7a9c25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
6 changes: 1 addition & 5 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ <h5><a href="#" id="section6">Data access and privacy</a></h5>
</div><!-- .form-group -->

<div class="form-group">
<label class="control-label" for="progress">Job status:&nbsp;</label>
<label class="control-label">Job status:&nbsp;</label>
<span id="results"></span>
<div class="progress" title="Display the progress of data upload and processing.">
<div class="progress-bar" style="width: 0%;"></div>
Expand All @@ -665,10 +665,6 @@ <h5><a href="#" id="section6">Data access and privacy</a></h5>
</div>
</div><!-- .tab-pane -->
<div class="tab-pane" id="news" role="tabpanel" aria-labelledby="news-tab">
<!--<h5><i>dd-mm-yy</i></h5>
<ul>
<li>added new data</li>
</ul>-->
</div>
</div><!-- .tab-content -->
</div><!-- .container -->
Expand Down
8 changes: 4 additions & 4 deletions templates/scatterplot.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,25 +243,25 @@
<div class="well">
<div>
<label for="exp1">Experiment 1:&nbsp;</label>
<select class="exp1" py:if="exp_names">
<select class="exp1" id="exp1" py:if="exp_names">
<option py:for="exp in exp_names" value="${exp}">${exp}</option>
</select>&nbsp;

<label for="ratio1">norm. protein ratio:&nbsp;</label>
<select class="ratio1" py:if="ratio_types">
<select class="ratio1" id="ratio1" py:if="ratio_types">
<option py:for="ratio_type in ratio_types" value="${ratio_type}">${ratio_type}</option>
</select>&nbsp;on horizontal x-axis
<button style="float: right;" class="btn btn-primary" id="btn_show">Show</button>
</div>

<div>
<label for="exp2">Experiment 2:&nbsp;</label>
<select class="exp2" py:if="exp_names">
<select class="exp2" id="exp2" py:if="exp_names">
<option py:for="exp_name in exp_names" value="${exp_name}">${exp_name}</option>
</select>&nbsp;

<label for="ratio2">norm. protein ratio:&nbsp;</label>
<select class="ratio2" py:if="ratio_types">
<select class="ratio2" id="ratio2" py:if="ratio_types">
<option py:for="ratio_type in ratio_types" value="${ratio_type}">${ratio_type}</option>
</select>&nbsp;on vertical y-axis
</div>
Expand Down

0 comments on commit c7a9c25

Please sign in to comment.