mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +01:00
* Add "on" before the date in the build status * Get rid of the extra space before the "and" in the build status * Make the errors and warnings links in the build status show the message content * Make sure that the "Images" section in the left navigation appears only for successful builds * Link the number of packages installed to the "Packages included" tab in the image information page * Remove unnecessary inline styles in the dashboard template * Make sure target names in the h1 are listed in alphabetical order (Bitbake rev: 644a38e9a90728af52ebda9846d2037dd6831b41) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
81 lines
2.9 KiB
HTML
81 lines
2.9 KiB
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% block pagecontent %}
|
|
|
|
|
|
<div class="">
|
|
<!-- Breadcrumbs -->
|
|
<div class="section">
|
|
<ul class="breadcrumb" id="breadcrumb">
|
|
<li><a href="{% url 'all-builds' %}">All builds</a></li>
|
|
<li>
|
|
{% block parentbreadcrumb %}
|
|
<a href="{%url 'builddashboard' build.pk%}">
|
|
{{build.get_sorted_target_list.0.target}} {%if build.target_set.all.count > 1%}(+ {{build.target_set.all.count|add:"-1"}}){%endif%} {{build.machine}} ({{build.completed_on|date:"d/m/y H:i"}})
|
|
</a>
|
|
{% endblock %}
|
|
</li>
|
|
{% block localbreadcrumb %}{% endblock %}
|
|
</ul>
|
|
<script>
|
|
$( function () {
|
|
$('#breadcrumb > li').append("<span class=\"divider\">→</span>");
|
|
$('#breadcrumb > li:last').addClass("active");
|
|
$('#breadcrumb > li:last > span').remove();
|
|
});
|
|
</script>
|
|
</div>
|
|
|
|
<div class="row-fluid">
|
|
|
|
<!-- begin left sidebar container -->
|
|
<div id="nav" class="span2">
|
|
<ul class="nav nav-list well">
|
|
{% if build.target_set.all.0.is_image and build.outcome == 0 %}
|
|
<li class="nav-header">Images</li>
|
|
{% block nav-target %}
|
|
{% for t in build.get_sorted_target_list %}
|
|
<li><a href="{% url 'target' build.pk t.pk %}">{{t.target}}</a><li>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% endif %}
|
|
<li class="nav-header">Build</li>
|
|
{% block nav-configuration %}
|
|
<li><a href="{% url 'configuration' build.pk %}">Configuration</a></li>
|
|
{% endblock %}
|
|
{% block nav-tasks %}
|
|
<li><a href="{% url 'tasks' build.pk %}">Tasks</a></li>
|
|
{% endblock %}
|
|
{% block nav-recipes %}
|
|
<li><a href="{% url 'recipes' build.pk %}">Recipes</a></li>
|
|
{% endblock %}
|
|
{% block nav-packages %}
|
|
<li><a href="{% url 'packages' build.pk %}">Packages</a></li>
|
|
{% endblock %}
|
|
<li class="nav-header">Performance</li>
|
|
{% block nav-buildtime %}
|
|
<li><a href="{% url 'buildtime' build.pk %}">Time</a></li>
|
|
{% endblock %}
|
|
{% block nav-cpuusage %}
|
|
<li><a href="{% url 'cpuusage' build.pk %}">CPU usage</a></li>
|
|
{% endblock %}
|
|
{% block nav-diskio %}
|
|
<li><a href="{% url 'diskio' build.pk %}">Disk I/O</a></li>
|
|
{% endblock %}
|
|
</ul>
|
|
</div>
|
|
<!-- end left sidebar container -->
|
|
|
|
<!-- Begin right container -->
|
|
{% block buildinfomain %}{% endblock %}
|
|
<!-- End right container -->
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|