Fixed #2 with reduced scope: only added achieved.growth.OD. Additionally, fixed heatmap range input fields in Rails.

pull/3/head
Yury V Bukhman 9 years ago
parent 105be75c26
commit 1263d43ce3

@ -131,27 +131,27 @@
<h3><span data-tooltip="Select value ranges for the heatmaps for easier comparison between experiments.">Heatmap options</span></h3> <h3><span data-tooltip="Select value ranges for the heatmaps for easier comparison between experiments.">Heatmap options</span></h3>
<div class="field"> <div class="field">
<%= f.label "Enter the range for the achieved growth on log scale." %><br /> <%= f.label "Enter the range for the achieved growth on log scale." %><br />
<%= f.text_field(:totg_min, :type => 'number', :min => '0', :size => '2') %> <%= f.text_field :totg_min, :size => '5' %>
<%= f.label "-" %> <%= f.label "-" %>
<%= f.text_field(:totg_max, :type => 'number', :min => '1', :size => '2') %> <%= f.text_field :totg_max, :size => '5' %>
</div> </div>
<div class="field"> <div class="field">
<%= f.label "Enter the range for the achieved growth on linear scale." %><br /> <%= f.label "Enter the range for the achieved growth on linear scale." %><br />
<%= f.text_field(:totg_OD_min, :type => 'number', :min => '0', :size => '2') %> <%= f.text_field :totg_OD_min, :size => '5' %>
<%= f.label "-" %> <%= f.label "-" %>
<%= f.text_field(:totg_OD_max, :type => 'number', :min => '1', :size => '2') %> <%= f.text_field :totg_OD_max, :size => '5' %>
</div> </div>
<div class="field"> <div class="field">
<%= f.label "Enter the range for the max specific growth rate." %><br /> <%= f.label "Enter the range for the max specific growth rate." %><br />
<%= f.text_field(:specg_min, :type => 'number', :min => '0', :size => '2') %> <%= f.text_field(:specg_min, :size => '5') %>
<%= f.label "-" %> <%= f.label "-" %>
<%= f.text_field(:specg_max, :type => 'number', :min => '1', :size => '2') %> <%= f.text_field(:specg_max, :size => '5') %>
</div> </div>
<div class="field"> <div class="field">
<%= f.label "Enter the range for the lag time." %><br /> <%= f.label "Enter the range for the lag time." %><br />
<%= f.text_field(:lagT_min, :type => 'number', :min => '0', :size => '2') %> <%= f.text_field(:lagT_min, :size => '5') %>
<%= f.label "-" %> <%= f.label "-" %>
<%= f.text_field(:lagT_max, :type => 'number', :min => '1', :size => '2') %> <%= f.text_field(:lagT_max, :size => '5') %>
</div> </div>
</li> </li>
<div class="actions" style="margin-top:30px; clear:both;"> <div class="actions" style="margin-top:30px; clear:both;">

Loading…
Cancel
Save