mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +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>
35 lines
902 B
HTML
35 lines
902 B
HTML
{% extends "simple_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 "simple-layer_versions_recipes" lv.id %}">({{lv.priority}}){{lv.branch}}:{{lv.commit}} ({{lv.count}} recipes)</a>
|
|
</td></tr>
|
|
{% endfor %}
|
|
</table></td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|