mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Since the Toaster GUI was cloned from the Simple UI, we need to update the URL pattern names in Simple UI to prevent conflict when determining the reverse URL path. (Bitbake rev: 6ed1a28eb0e52a6de83a37664ff6f4418ce84ee4) 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 "simple_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 "simple-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 %}
|