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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « master/public_html/default.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {%- block doctype -%} 1 {%- block doctype -%}
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 {% endblock %} 4 {% endblock %}
5 <html xmlns="http://www.w3.org/1999/xhtml"> 5 <html xmlns="http://www.w3.org/1999/xhtml">
6 <head> 6 <head>
7 {% block head %} 7 {% block head %}
8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9 <title>Buildbot</title> 9 <title>Buildbot</title>
10 <link href="default.css" rel="stylesheet" type="text/css" /> 10 <link href="default.css" rel="stylesheet" type="text/css" />
11 {% endblock %} 11 {% endblock %}
12 </head> 12 </head>
13 <body vlink="#800080"> 13 <body vlink="#800080">
14 {% block content %} 14 {% block content %}
15 <table style="width: 100%"><tr> 15 <table style="width: 100%"><tr>
16 {% for b in builders %} 16 {% for b in builders %}
17 <td valign=bottom class=mini-box><a href='{{ b.url }}' class='{{ b.outco me }}' title='{{ b.name }}' target=_blank> {{ b.name if b.show_name else '' }} < /a></td> 17 {% if not 'Trybot' in b.name %}
18 <td valign=bottom class=mini-box><a href='{{ b.url }}' class='{{ b.out come }}' title='{{ b.name }}' target=_blank> {{ b.name if b.show_name else '' }} </a></td>
19 {% endif %}
18 {% endfor %} 20 {% endfor %}
19 </tr></table> 21 </tr></table>
20 {% endblock content %} 22 {% endblock content %}
21 </body> 23 </body>
22 </html> 24 </html>
OLDNEW
« 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