aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/apps/jenkinsApp/build.html
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-12-29 18:59:32 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-04 22:09:16 +0100
commit5ec81d9e77fcb56ddf5953989e23b6cafe4772a3 (patch)
tree63b2d1c262a06bcfb54a6dcb368af032aacc84a2 /src/main/webapp/apps/jenkinsApp/build.html
parent8cce8890eca34fead35ad19a0db6d95dd047b3a6 (diff)
downloadesper-testing-5ec81d9e77fcb56ddf5953989e23b6cafe4772a3.tar.gz
esper-testing-5ec81d9e77fcb56ddf5953989e23b6cafe4772a3.tar.bz2
esper-testing-5ec81d9e77fcb56ddf5953989e23b6cafe4772a3.tar.xz
esper-testing-5ec81d9e77fcb56ddf5953989e23b6cafe4772a3.zip
o Adding build view for jenkins app.
Diffstat (limited to 'src/main/webapp/apps/jenkinsApp/build.html')
-rw-r--r--src/main/webapp/apps/jenkinsApp/build.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/main/webapp/apps/jenkinsApp/build.html b/src/main/webapp/apps/jenkinsApp/build.html
new file mode 100644
index 0000000..02fa60b
--- /dev/null
+++ b/src/main/webapp/apps/jenkinsApp/build.html
@@ -0,0 +1,41 @@
+<div class="container">
+
+ <div class="page-header">
+ <h1>Jenkins Build</h1>
+ </div>
+
+ <ul class="breadcrumb">
+ <li><a ng-click="showServers()">All Servers</a> <span class="divider">/</span></li>
+ <li><a ng-click="showServer()">Servers</a> <span class="divider">/</span></li>
+ <li><a ng-click="showJob()">Job</a> <span class="divider">/</span></li>
+ <li class="active">Build</li>
+ </ul>
+
+ <h3>Overview</h3>
+ <table class="table">
+ <tbody>
+ <tr>
+ <th>Timestamp</th>
+ <td>{{details.build.timestamp | date:'medium'}}</td>
+ </tr>
+ <tr>
+ <th>Number</th>
+ <td>{{details.build.number}}</td>
+ </tr>
+ <tr>
+ <th>Duration</th>
+ <td>{{details.build.duration / 1000 | number:0}}s</td>
+ </tr>
+ </tbody>
+ </table>
+
+ <h3>Users</h3>
+ <table>
+ <tbody>
+ <tr ng-repeat="user in details.participants">
+ <td>{{user.uuid}}</td>
+ </tr>
+ </tbody>
+ </table>
+
+</div>