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