Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(837)

Unified Diff: master/templates/horizontal_one_box_per_build.html

Issue 415783002: Exclude trybots from horizontal_one_box_per_builder, fix CSS (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Fix CSS Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « master/public_html/default.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: master/templates/horizontal_one_box_per_build.html
diff --git a/master/templates/horizontal_one_box_per_build.html b/master/templates/horizontal_one_box_per_build.html
index 014eb15f9a98d5d3f389626929f78c9aeae92711..4b503120d5a79cfb6529c860463075488a7a39ab 100644
--- a/master/templates/horizontal_one_box_per_build.html
+++ b/master/templates/horizontal_one_box_per_build.html
@@ -14,7 +14,9 @@
{% block content %}
<table style="width: 100%"><tr>
{% for b in builders %}
- <td valign=bottom class=mini-box><a href='{{ b.url }}' class='{{ b.outcome }}' title='{{ b.name }}' target=_blank> {{ b.name if b.show_name else '' }} </a></td>
+ {% if not 'Trybot' in b.name %}
+ <td valign=bottom class=mini-box><a href='{{ b.url }}' class='{{ b.outcome }}' title='{{ b.name }}' target=_blank> {{ b.name if b.show_name else '' }} </a></td>
+ {% endif %}
{% endfor %}
</tr></table>
{% endblock content %}
« no previous file with comments | « master/public_html/default.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698