diff options
Diffstat (limited to 'python/templates/pages/packages/ebuilds')
-rw-r--r-- | python/templates/pages/packages/ebuilds/ebuild/index.html | 4 | ||||
-rw-r--r-- | python/templates/pages/packages/ebuilds/index.html | 12 |
2 files changed, 12 insertions, 4 deletions
diff --git a/python/templates/pages/packages/ebuilds/ebuild/index.html b/python/templates/pages/packages/ebuilds/ebuild/index.html index 4752be1..6f2166a 100644 --- a/python/templates/pages/packages/ebuilds/ebuild/index.html +++ b/python/templates/pages/packages/ebuilds/ebuild/index.html @@ -48,12 +48,12 @@ {% endif %} {% for BLR in BLR_tmp %} {% if BLR.BuildLogId.BuildLogId == BL.BuildLogId%} - <span class="label label-danger">Repoman</span> + <span class="label label-warning">Repoman</span> {% endif %} {% endfor %} {% for BLQ in BLQ_tmp %} {% if BLQ.BuildLogId.BuildLogId == BL.BuildLogId%} - <span class="label label-danger">Qa</span> + <span class="label label-warning">Qa</span> {% endif %} {% endfor %} <a class="btn btn-default btn-xs" href="/new/logs/build/{{ BL.BuildLogId }}/">More info</a> diff --git a/python/templates/pages/packages/ebuilds/index.html b/python/templates/pages/packages/ebuilds/index.html index a9cef7d..0107d0b 100644 --- a/python/templates/pages/packages/ebuilds/index.html +++ b/python/templates/pages/packages/ebuilds/index.html @@ -13,8 +13,16 @@ <td> {% for FI in fi_tmp %} {% if FI.EbuildId == E.EbuildId.EbuildId %} - {% if FI.qa %}<span class="label label-warning">Qa</span>{% endif %} - {% if FI.repoman %}<span class="label label-warning">Repoman</span>{% endif %} + {% if FI.qa %} + <span class="label label-warning">Qa</span> + {% else %} + <span class="label label-success">Qa</span> + {% endif %} + {% if FI.repoman %} + <span class="label label-warning">Repoman</span> + {% else %} + <span class="label label-success">Repoman</span> + {% endif %} {% if FI.fail %} <span class="label label-danger">Build</span> {% else %} |