mirror of
https://git.yoctoproject.org/poky
synced 2026-03-15 03:39:42 +01:00
We add new pages for the layer importing, layer details, showing project builds and project configuration. The pages are in read-only mode, but they're needed as to be able to verify the quality of data in the system. Write capabilities will be added in a subsequent patch. [YOCTO #6595] [YOCTO #6590] [YOCTO #6591] [YOCTO #6588] [YOCTO #6589] (Bitbake rev: eed9ae5c2a2bd7567e12ae9a4f02a5a966a1e1a3) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
60 lines
3.7 KiB
HTML
60 lines
3.7 KiB
HTML
{% extends "baseprojectpage.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
|
|
{% block localbreadcrumb %}
|
|
<li>Project builds</li>
|
|
{% endblock %}
|
|
|
|
{% block projectinfomain %}
|
|
<div class="page-header">
|
|
<h1>
|
|
All builds
|
|
<i class="icon-question-sign get-help heading-help" title="This page lists all the layers compatible with Yocto Project 1.7 'Dxxxx' that Toaster knows about. They include community-created layers suitable for use on top of OpenEmbedded Core and any layers you have imported"></i>
|
|
</h1>
|
|
</div>
|
|
<!--div class="alert">
|
|
<div class="input-append" style="margin-bottom:0px;">
|
|
<input class="input-xxlarge" type="text" placeholder="Search layers" value="browser" />
|
|
<a class="add-on btn">
|
|
<i class="icon-remove"></i>
|
|
</a>
|
|
<button class="btn" type="button">Search</button>
|
|
<a class="btn btn-link" href="#">Show all layers</a>
|
|
</div>
|
|
</div-->
|
|
<div id="layer-added" class="alert alert-info lead" style="display:none;"></div>
|
|
<div id="layer-removed" class="alert alert-info lead" style="display:none;">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
<strong>1</strong> layer deleted from <a href="project-with-targets.html">your project</a>: <a href="#">meta-aarch64</a>
|
|
</div>
|
|
|
|
|
|
{% include "basetable_top.html" %}
|
|
{% for build in objects %}
|
|
<tr class="data">
|
|
<td class="outcome"><a href="{% url "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign success"></i>{%elif build.outcome == build.FAILED%}<i class="icon-minus-sign error"></i>{%else%}{%endif%}</a></td>
|
|
<td class="target">{% for t in build.target_set.all %} <a href="{% url "builddashboard" build.id %}"> {{t.target}} </a> <br />{% endfor %}</td>
|
|
<td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td>
|
|
<td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/y H:i"}}</a></td>
|
|
<td class="completed_on"><a href="{% url "builddashboard" build.id %}">{{build.completed_on|date:"d/m/y H:i"}}</a></td>
|
|
<td class="failed_tasks error">{% query build.task_build outcome=4 order__gt=0 as exectask%}{% if exectask.count == 1 %}<a href="{% url "task" build.id exectask.0.id %}">{{exectask.0.recipe.name}}.{{exectask.0.task_name}}</a>{% elif exectask.count > 1%}<a href="{% url "tasks" build.id %}?filter=outcome%3A4">{{exectask.count}}</a>{%endif%}</td>
|
|
<td class="errors_no">{% if build.errors_no %}<a class="errors_no error" href="{% url "builddashboard" build.id %}#errors">{{build.errors_no}} error{{build.errors_no|pluralize}}</a>{%endif%}</td>
|
|
<td class="warnings_no">{% if build.warnings_no %}<a class="warnings_no warning" href="{% url "builddashboard" build.id %}#warnings">{{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a>{%endif%}</td>
|
|
<td class="time"><a href="{% url "buildtime" build.id %}">{{build.timespent|sectohms}}</a></td>
|
|
<td class="log">{{build.cooker_log_path}}</td>
|
|
<td class="output">
|
|
{% if build.outcome == build.SUCCEEDED %}
|
|
<a href="{%url "builddashboard" build.id%}#images">{{fstypes|get_dict_value:build.id}}</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
{% include "basetable_bottom.html" %}
|
|
|
|
<!-- Modals -->
|
|
|
|
|
|
{% endblock %}
|