mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2026-01-27 09:01:24 +01:00
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>
22 lines
1.2 KiB
HTML
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 %}
|