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

Side by Side Diff: buildbot/status/web/templates/console.html

Issue 9113086: Add " (CQ)" to the author name in the console if the commit-queue was used. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/build/third_party/buildbot_8_4p1/
Patch Set: . Created 8 years, 11 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
« no previous file with comments | « README.chromium ('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 {% extends "layout.html" %} 1 {% extends "layout.html" %}
2 2
3 {% block head %} 3 {% block head %}
4 {{ super() }} 4 {{ super() }}
5 <script type='text/javascript'> 5 <script type='text/javascript'>
6 // <![CDATA[ 6 // <![CDATA[
7 // 7 //
8 8
9 // 9 //
10 // Functions used to display the build status bubble on box click. 10 // Functions used to display the build status bubble on box click.
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 {% for r in revisions %} 180 {% for r in revisions %}
181 {% set alt = alt_class.next() %} 181 {% set alt = alt_class.next() %}
182 {% set last = "last" if loop.last else "" %} 182 {% set last = "last" if loop.last else "" %}
183 183
184 <tr> 184 <tr>
185 <td class='DevRev {{ alt }}' width="1%"> 185 <td class='DevRev {{ alt }}' width="1%">
186 {{ r.id|shortrev(r.repository) }} 186 {{ r.id|shortrev(r.repository) }}
187 </td> 187 </td>
188 <td class='DevName {{ alt }}' width="1%"> 188 <td class='DevName {{ alt }}' width="1%">
189 {{ r.who|user }} 189 {{ r.who|user }}
190 {{ r.cq }}
190 </td> 191 </td>
191 192
192 {% for c in categories %} 193 {% for c in categories %}
193 <td class='DevStatus {{ alt }} {{ last }}'> 194 <td class='DevStatus {{ alt }} {{ last }}'>
194 <table width="100%"> 195 <table width="100%">
195 <tr> 196 <tr>
196 {% for b in r.builds[c.name] %} 197 {% for b in r.builds[c.name] %}
197 <td class='DevStatusBox'> 198 <td class='DevStatusBox'>
198 <a href='#' onclick='showBuildBox("{{ b.url }}", event); return fals e;' 199 <a href='#' onclick='showBuildBox("{{ b.url }}", event); return fals e;'
199 title='{{ b.pageTitle|e }}' class='DevStatusBox {{ b.color }} {{ b.tag }}' 200 title='{{ b.pageTitle|e }}' class='DevStatusBox {{ b.color }} {{ b.tag }}'
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 </script> 258 </script>
258 259
259 {% endblock %} 260 {% endblock %}
260 261
261 262
262 {% block footer %} 263 {% block footer %}
263 264
264 {{ super() }} 265 {{ super() }}
265 {# <p>Debug info: {{ debuginfo }}</p> #} 266 {# <p>Debug info: {{ debuginfo }}</p> #}
266 {% endblock %} 267 {% endblock %}
OLDNEW
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698