layerindex-web/templates/layerindex/layerchecklist.html
Paul Eggleton 403e94a0f1 Add search to duplicates/comparison layer filter dialog
The layer index has quite a number of layers in it these days and thus
this list is quite long to scroll through. Use the same layer filtering
method as we do on the layers page, taking care to ensure that the
"select all" and "select none" buttons only affect what you can see when
the layer list is filtered.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-11-19 16:44:42 +13: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 class="layerstable"><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 %}