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

Side by Side Diff: masters/master.chromiumos/templates/build.html

Issue 1885033002: BuildBot: Add anchors for unbound aliases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Originally from config for buildbot. 1 # Originally from config for buildbot.
2 # See third_party/buildbot_8_4p1/COPYING 2 # See third_party/buildbot_8_4p1/COPYING
3 3
4 {% extends "layout.html" %} 4 {% extends "layout.html" %}
5 {% import 'forms.html' as forms %} 5 {% import 'forms.html' as forms %}
6 {% from "change_macros.html" import change with context %} 6 {% from "change_macros.html" import change with context %}
7 7
8 {% block content %} 8 {% block content %}
9 9
10 <h1> 10 <h1>
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 <div class="{{ s.css_class }} result"> 138 <div class="{{ s.css_class }} result">
139 <a href="{{ s.link }}">{{ s.name }}</a> 139 <a href="{{ s.link }}">{{ s.name }}</a>
140 {% set previous_name = s.name %} 140 {% set previous_name = s.name %}
141 {{ s.text }}&nbsp;<span style="float:right">{{ '( ' + s.time_to_run + ' )' if s.time_to_run else '' }}</span> 141 {{ s.text }}&nbsp;<span style="float:right">{{ '( ' + s.time_to_run + ' )' if s.time_to_run else '' }}</span>
142 </div> 142 </div>
143 143
144 <ul> 144 <ul>
145 {% set item_class = cycler('alt', '') %} 145 {% set item_class = cycler('alt', '') %}
146 {% for l in s.logs %} 146 {% for l in s.logs %}
147 <li class="{{ item_class.next() }}"> 147 <li class="{{ item_class.next() }}">
148 <a href="{{ l.link }}">{{ l.name }}</a> 148 {% if l.link %}
149 <a href="{{ l.link }}">{{ l.name }}</a>
150 {% else %}
151 <span>{{ l.name }}</span>
152 {% endif %}
149 {% if s.aliases %} 153 {% if s.aliases %}
150 {% for a in s.aliases.get(l.name, ()) %} 154 {% for a in s.aliases.get(l.name, ()) %}
151 <a href="{{ a.url }}">[{{ a.text }}]</a> 155 <a href="{{ a.url }}">[{{ a.text }}]</a>
152 {% endfor %} 156 {% endfor %}
153 {% endif %} 157 {% endif %}
154 </li> 158 </li>
155 {% else %} 159 {% else %}
156 <li class="{{ item_class.next() }}">- no logs -</li> 160 <li class="{{ item_class.next() }}">- no logs -</li>
157 {% endfor %} 161 {% endfor %}
158 162
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 <tr><td class="left">End</td><td>{{ end }}</td></tr> 210 <tr><td class="left">End</td><td>{{ end }}</td></tr>
207 {% endif %} 211 {% endif %}
208 <tr {{ 'class="alt"' if end else '' }}><td class="left">Elapsed</td><td>{{ ela psed }}</td></tr> 212 <tr {{ 'class="alt"' if end else '' }}><td class="left">Elapsed</td><td>{{ ela psed }}</td></tr>
209 </table> 213 </table>
210 214
211 </div> 215 </div>
212 216
213 <br style="clear:both"/> 217 <br style="clear:both"/>
214 218
215 {% endblock %} 219 {% endblock %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698