| 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 %}
|
|
|