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:44:48 +0100 |
commit | 09abcf3199b2e86758a974a47ebe31f5fb79440a (patch) | |
tree | 332ee826523c23231a5e0ccc68430a885bc84989 /lib/toaster | |
parent | c9b20009c5e161987a143b00ee22218a4c9c0692 (diff) | |
download | bitbake-09abcf3199b2e86758a974a47ebe31f5fb79440a.zip |
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
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>
Diffstat (limited to 'lib/toaster')
-rw-r--r-- | lib/toaster/toastergui/templates/mrb_section.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/toaster/toastergui/templates/mrb_section.html b/lib/toaster/toastergui/templates/mrb_section.html index 903635de..57a6f9be 100644 --- a/lib/toaster/toastergui/templates/mrb_section.html +++ b/lib/toaster/toastergui/templates/mrb_section.html @@ -13,7 +13,11 @@ <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 "> - <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> + <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> <div class="row-fluid"> <div class="span3 lead"> |