mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 03:32:13 +02:00
THis is a large set of fixes for the generic table, Build and Dashboard pages. Among the fixes: * the table remembers which columns to show across refreshes, based on saving the settings in a cookie * added column timespent for a build which is a denormalization of the completed_on - started_on information due to limits in computing datetime differences in the SQL engine * fixed formatting of the time differences * various sorting header links fixed * correct error and warning CSS classes applied to the respective rows * fixes multiple divide-by-zero error in displaying duration estimations (Bitbake rev: 61e3dee55ac577fce1c0ae0fe7e0d3cf644e8ae6) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
{% extends "basebuildpage.html" %}
|
|
{% block localbreadcrumb %}
|
|
<li>Configuration</li>
|
|
{% endblock %}
|
|
|
|
{% block buildinfomain %}
|
|
<!-- page title -->
|
|
<div class="row-fluid span10">
|
|
<div class="page-header">
|
|
<h1>Configuration</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- configuration table -->
|
|
<div class="row-fluid pull-right span10" id="navTab">
|
|
<ul class="nav nav-pills">
|
|
<li class=""><a href="{% url 'configuration' build.id %}">Summary</a></li>
|
|
<li class="active"><a href="#" >BitBake variables</a></li>
|
|
</ul>
|
|
|
|
|
|
<!-- variables -->
|
|
<div id="variables" class="tab-pane">
|
|
{% include "basetable_top.html" %}
|
|
|
|
{% for variable in objects %}
|
|
<tr class="data">
|
|
<td class="variable">{{variable.variable_name}}</td>
|
|
<td class="variable_value">{{variable.variable_value}}</td>
|
|
<td class="file">{% for vh in variable.vhistory_set.all %}{{vh.operation}} in {{vh.file_name}}:{{vh.line_number}}<br/>{%endfor%}</td>
|
|
<td class="description">{% if variable.description %}{{variable.description}}{% endif %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{% include "basetable_bottom.html" %}
|
|
|
|
</div> <!-- endvariables -->
|
|
|
|
</div>
|
|
{% endblock %}
|