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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « templates/logs.html ('k') | templates/step.html » ('j') | templates/step.html » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/slave.html
diff --git a/templates/slave.html b/templates/slave.html
new file mode 100644
index 0000000000000000000000000000000000000000..b3808b411df69f2b1109f7bc395bddc7eb4b6a0f
--- /dev/null
+++ b/templates/slave.html
@@ -0,0 +1,40 @@
+{% extends "viewer_base.html" %}
+
+{% block title %}
+Buildslave: {{name}}
+{% endblock title %}
+
+{% block body %}
+<div class="row-fluid">
+ <div class="span12">
+ <h2>Buildslave {{name}}</h2>
+ {% if runningBuilds %}
+ <h4>Currently building:</h4>
+ <table class='table table-condensed'><tbody>
+ {% for build in runningBuilds %}
+ <tr>
+ <td class="time_ago">{{build.times[0]|time_since}} ago</td>
+ <td>Revision {{build.sourceStamp.revision}}</td>
+ <td>
+ <a href="/buildbot/{{master}}/builders/{{build.builderName}}?new=true">
+ {{build.builderName}}
+ </a>
+ </td>
+ <td>
+ <a href="/buildbot/{{master}}/builders/{{build.builderName}}/builds/{{build.number}}">
+ #{{build.number}}
+ </a>
+ </tr>
+ {% endfor %}
+ </tbody></table>
+ {% else %}
+ <h4>Not currently running any builds</h4>
+ {% endif %}
+
+
+ </div>
+</div>
+{% endblock body %}
+
+{% block sub_footer %}
+{% endblock sub_footer %}
« 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