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

Side by Side Diff: templates/slave.html

Issue 13892003: Added buildbot appengine frontend for chromium-build app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Review fixes Created 7 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
(Empty)
1 {% extends "viewer_base.html" %}
2
3 {% block title %}
4 Buildslave: {{name}}
5 {% endblock title %}
6
7 {% block body %}
8 <div class="row-fluid">
9 <div class="span12">
10 <h2>Buildslave {{name}}</h2>
11 {% if runningBuilds %}
12 <h4>Currently building:</h4>
13 <table class='table table-condensed'><tbody>
14 {% for build in runningBuilds %}
15 <tr>
16 <td class="time_ago">{{build.times[0]|time_since}} ago</td>
17 <td>Revision {{build.sourceStamp.revision}}</td>
18 <td>
19 <a href="/buildbot/{{master}}/builders/{{build.builderName}}?new=t rue">
20 {{build.builderName}}
21 </a>
22 </td>
23 <td>
24 <a href="/buildbot/{{master}}/builders/{{build.builderName}}/build s/{{build.number}}">
25 #{{build.number}}
26 </a>
27 </tr>
28 {% endfor %}
29 </tbody></table>
30 {% else %}
31 <h4>Not currently running any builds</h4>
32 {% endif %}
33
34
35 </div>
36 </div>
37 {% endblock body %}
38
39 {% block sub_footer %}
40 {% endblock sub_footer %}
OLDNEW
« no previous file with comments | « templates/logs.html ('k') | templates/step.html » ('j') | templates/step.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698