Skip to content

Commit

Permalink
add strains 9 and 10 as disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
samwachspress committed Jun 14, 2021
1 parent 6fdba01 commit 53bee69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/templates/strain/strain_catalog.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ <h3>Strain Sets</h3>
</small>
</td>
</tr>
{% for i in range(1,9) %}
{% for i in range(1,11) %}
<tr>
<td>
{# REVERT - enable mapping set 7 and 8 #}
<input id="set-{{ i }}" type="checkbox" name="items-{{ i + 1000 }}" value="set_{{ i }}" class="styled-checkbox" />
<input id="set-{{ i }}" type="checkbox" name="items-{{ i + 1000 }}" value="set_{{ i }}" class="styled-checkbox" {% if i>= 9 %}disabled{% endif %}/>
<label for="set-{{ i }}">&nbsp;</label>
</td>
<td><strong><label for="set-{{ i }}">Mapping Set {{ i }}</label></strong></td>
Expand Down Expand Up @@ -177,8 +177,8 @@ <h3>Individual Strains</h3>
</div>
<div id='alert-modal'></div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" id="submitPaste">Submit</button>
<button type="button" class="btn btn-nu" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-nu" id="submitPaste">Submit</button>
</div>
</div>
</div>
Expand Down

0 comments on commit 53bee69

Please sign in to comment.