mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
This patch adds the Toaster component to Bitbake. Toaster is a module designed to record the progress of a Bitbake build, and data about the resultant artifacts. It contains a web-based interface and a REST API allowing post-facto inspection of the build process and artifacts. Features present in this build: * toaster start script * relational data model * Django boilerplate code * the REST API * the Simple UI web interface This patch has all the development history squashed together. Code portions contributed by Calin Dragomir <calindragomir@gmail.com>. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
35 lines
885 B
HTML
35 lines
885 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 layers %}
|
|
|
|
<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 %}
|