27 lines
787 B
HTML
27 lines
787 B
HTML
<template name="TestList">
|
|
<div id="testList">
|
|
<div id="sortAsc" class="clickable">Sort ASC</div>
|
|
<div id="sortDesc" class="clickable">Sort DESC</div>
|
|
<div class="testListListing columnContainer">
|
|
{{#each products}}
|
|
{{>TestListRow}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template name="TestListRow">
|
|
<div class="selectionProduct {{#if sheetProduct}}selected{{/if}} columnContent">
|
|
<span class="include clickable">
|
|
{{#if sheetProduct}}
|
|
<i class="fa fa-check-circle" aria-hidden="true"></i>
|
|
{{else}}
|
|
<i class="fa fa-circle-o" aria-hidden="true"></i>
|
|
{{/if}}
|
|
<span class="productName noselect">{{name}}</span>
|
|
</span>
|
|
{{#if showAlternateName}}
|
|
<div class="includeAs"> as "{{sheetProductName}}"</div>
|
|
{{/if}}
|
|
</div>
|
|
</template> |