mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
In an effort to make the Simple UI more usable and reponsive, this patch adds pagination support for the pages with lots of entries: Builds, Configuration and Tasks. (Bitbake rev: d4f075c050ad9ecebe750420d49961a7f30d090b) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
888 B
HTML
35 lines
888 B
HTML
{% extends "basetable.html" %}
|
|
|
|
{% block pagename %}
|
|
<h1>Toaster - Layers</h1>
|
|
{% endblock %}
|
|
|
|
{% block pagetable %}
|
|
{% load projecttags %}
|
|
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Local Path</th>
|
|
<th>Layer Index URL</th>
|
|
<th>Known Versions</th>
|
|
</tr>
|
|
|
|
{% for layer in objects %}
|
|
|
|
<tr class="data">
|
|
<td>{{layer.name}}</td>
|
|
<td>{{layer.local_path}}</td>
|
|
<td><a href='{{layer.layer_index_url}}'>{{layer.layer_index_url}}</a></td>
|
|
<td><table>
|
|
{% for lv in layer.versions %}
|
|
<tr><td>
|
|
<a href="{% url "layer_versions_recipes" lv.id %}">({{lv.priority}}){{lv.branch}}:{{lv.commit}} ({{lv.count}} recipes)</a>
|
|
</td></tr>
|
|
{% endfor %}
|
|
</table></td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|