layerindex-web/templates/layerindex/layerchecklist.html
Paul Eggleton 26d2bd2f36 Support selecting more than one layer in other distro comparison search form
Provide a lazy-loaded popup for selecting layers to include in the query
instead of having it as a simple drop-down, so you can select more than
one layer.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-08-13 16:02:59 +02:00

22 lines
1.2 KiB
HTML

{% comment %}
layerindex-web - layer check list AJAX template
Copyright (C) 2018 Intel Corporation
Licensed under the MIT license, see COPYING.MIT for details
{% endcomment %}
{% autoescape on %}
<table><tbody>
{% for layerbranch in layerbranches %}
<tr>
<td class="checkboxtd">
<input type="checkbox" class="filterlayercheckbox" value="{{ layerbranch.layer.id }}" id="id_layercheckbox_{{layerbranch.layer.id}}" />
</td>
<td><label for="id_layercheckbox_{{layerbranch.layer.id}}">{{ layerbranch.layer.name }}</label></td>
</tr>
{% endfor %}
</tbody></table>
{% endautoescape %}