mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 10:59:41 +01:00
bitbake: toaster: Remove project name from latest project builds
The 'latest builds' list in the project builds page does not need to show the project name, since it lists only builds for the selected project. This patch removes the redundant project name. (Bitbake rev: 065652b9c649135f9e2fc5d9ba90e98f560dccdd) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6aeaca1c83
commit
82675fc4ed
@@ -18,13 +18,15 @@
|
||||
{% endif %}
|
||||
<div id="latest-builds">
|
||||
{% for build in mru %}
|
||||
<div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == build.FAILED%}alert-error{%else%}alert-info{%endif%} project-name ">
|
||||
<div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == build.FAILED%}alert-error{%else%}alert-info{%endif%}
|
||||
{% if mrb_type != 'project' %}
|
||||
project-name">
|
||||
<span class="label {%if build.outcome == build.SUCCEEDED%}label-success{%elif build.outcome == build.FAILED%}label-important{%else%}label-info{%endif%}">
|
||||
<a href={% url 'project' build.project.pk %}>
|
||||
{{build.project.name}}
|
||||
</a>
|
||||
</span>
|
||||
|
||||
{% endif %}
|
||||
<div class="row-fluid">
|
||||
<div class="span3 lead">
|
||||
{%if build.outcome == build.SUCCEEDED or build.outcome == build.FAILED %}
|
||||
|
||||
Reference in New Issue
Block a user