mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
We rename the projecttags in bldviewer.templatetags to simple_projecttags in order to avoid conflict with the similarly named tagset in toastergui. The conflict leads to an intermittent bug where proper tags are not read correctly since Django uses only the module name as global tag library identificator. (Bitbake rev: a37f2c194d7e59611177cb8755524b7ad702fe91) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
909 B
HTML
35 lines
909 B
HTML
{% extends "simple_basetable.html" %}
|
|
|
|
{% block pagename %}
|
|
<h1>Toaster - Layers</h1>
|
|
{% endblock %}
|
|
|
|
{% block pagetable %}
|
|
{% load simple_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 %}
|