diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2015-09-08 10:47:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-08 23:54:15 +0100 |
commit | c386abc89e2ec6277d84c98145a4348414d5f887 (patch) | |
tree | f22a95ad4f5dc45b647dc3d60104c77ae40f7099 | |
parent | a4dbd4bfa12d1b30a8e09c27bebd131f0e67f030 (diff) | |
download | poky-c386abc89e2ec6277d84c98145a4348414d5f887.tar.gz |
bitbake: toaster: fix project names in latest builds
Make sure that the project name we show for each build
in the latest builds section of the all builds page:
* Has the same styles as the build, depending on the
build status (in progress, failed or success)
* Links to the project page
(Bitbake rev: 09abcf3199b2e86758a974a47ebe31f5fb79440a)
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>
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/mrb_section.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/mrb_section.html b/bitbake/lib/toaster/toastergui/templates/mrb_section.html index 903635de94..57a6f9be73 100644 --- a/bitbake/lib/toaster/toastergui/templates/mrb_section.html +++ b/bitbake/lib/toaster/toastergui/templates/mrb_section.html | |||
@@ -13,7 +13,11 @@ | |||
13 | <div id="latest-builds"> | 13 | <div id="latest-builds"> |
14 | {% for build in mru %} | 14 | {% for build in mru %} |
15 | <div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == build.FAILED%}alert-error{%else%}alert-info{%endif%} project-name "> | 15 | <div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == build.FAILED%}alert-error{%else%}alert-info{%endif%} project-name "> |
16 | <span class="label {%if build.outcome == build.SUCCEEDED%}label-success{%elif build.outcome == build.FAILED%}label-danger{%else%}label-info{%endif%}"> {{build.project.name}} </span> | 16 | <span class="label {%if build.outcome == build.SUCCEEDED%}label-success{%elif build.outcome == build.FAILED%}label-important{%else%}label-info{%endif%}"> |
17 | <a href={% url 'project' build.project.pk %}> | ||
18 | {{build.project.name}} | ||
19 | </a> | ||
20 | </span> | ||
17 | 21 | ||
18 | <div class="row-fluid"> | 22 | <div class="row-fluid"> |
19 | <div class="span3 lead"> | 23 | <div class="span3 lead"> |