mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +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>
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% extends "basebuildpage.html" %}
|
|
|
|
{% block pagetable %}
|
|
{% if not objects %}
|
|
<p>No packages were recorded for this target!</p>
|
|
{% else %}
|
|
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Version</th>
|
|
<th>Size (Bytes)</th>
|
|
<th>Recipe</th>
|
|
<th>Depends on</th>
|
|
</tr>
|
|
|
|
{% for package in objects %}
|
|
|
|
<tr class="data">
|
|
<td><a name="#{{package.name}}">{{package.name}}</a></td>
|
|
<td>{{package.version}}</td>
|
|
<td>{{package.size}}</td>
|
|
<td>{%if package.recipe %}<a name="{{package.recipe.name}}.{{package.package_name}}">
|
|
<a href="{% url "layer_versions_recipes" package.recipe.layer_version_id %}#{{package.recipe.name}}">{{package.recipe.name}}</a>{{package.package_name}}</a>{%endif%}</td>
|
|
<td>
|
|
<div style="height: 4em; overflow:auto">
|
|
{% for d in package.package_dependencies_source.all %}
|
|
<a href="#{{d.name}}">{{d.depends_on.name}}</a><br/>
|
|
{% endfor %}
|
|
</div>
|
|
</td>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|