This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/compare/template.hbs
2015-07-13 16:16:54 -08:00

41 lines
976 B
Handlebars

<h2>{{genus-name}} - Compare Strains</h2>
<div class="span-1">
<fieldset>
<form>
<ul>
<li>
<label>Strains</label>
{{
select-2
multiple=true
content=strains
value=selectedStrains
optionValuePath="id"
optionLabelPath="fullNameMU"
placeholder="Select one or more strains"
}}
</li>
<li>
<label>Characteristics</label>
{{
select-2
multiple=true
content=characteristics
value=selectedCharacteristics
optionValuePath="id"
optionLabelPath="characteristicName"
placeholder="Select one or more characteristics"
}}
</li>
<li>
<a class="action button-gray smaller right" {{action 'search'}}>
Search
</a>
</li>
</ul>
</form>
</fieldset>
</div>
{{outlet}}