aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/apps/jenkinsApp/server.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/apps/jenkinsApp/server.html')
-rw-r--r--src/main/webapp/apps/jenkinsApp/server.html64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/main/webapp/apps/jenkinsApp/server.html b/src/main/webapp/apps/jenkinsApp/server.html
deleted file mode 100644
index 7fbd9f5..0000000
--- a/src/main/webapp/apps/jenkinsApp/server.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<div class="container">
-
- <navbar/>
-
-
- <div class="page-header">
- <h1>Jenkins Server</h1>
- </div>
-
- <ul class="breadcrumb">
- <li><a ng-click="showServers()">All Servers</a> <span class="divider">/</span></li>
- <li class="active">Server</li>
- </ul>
-
- <h3>Overview</h3>
- <table class="table">
- <tbody>
- <tr>
- <th>URL</th>
- <td><a href="{{server.url}}">{{server.url}}</a></td>
- </tr>
- <tr>
- <th>Enabled</th>
- <td>{{server.enabled}}</td>
- </tr>
- <tr>
- <th>Stats</th>
- <td>{{server.jobCount}} jobs, {{server.buildCount}} builds</td>
- </tr>
- </tbody>
- </table>
-
- <h3>Recent Jobs</h3>
- <table class="table">
- <thead>
- <tr>
- <th>Job</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="job in jobs.rows">
- <td>{{job.createdDate | date:'medium'}}</td>
- <td>{{job.displayName}}</td>
- <td>{{job.uuid}}</td>
- <td><a class="btn" ng-click="showJob(job.uuid)"><i class="icon-chevron-right"></i></a></td>
- </tr>
- </tbody>
- <tfoot>
- <tr>
- <td colspan="3">
- <ul class="pager">
- <li class="previous" ng-class="{disabled: jobs.startIndex == 0}">
- <a ng-click="jobs.prev()">&larr; Older</a>
- </li>
- <li class="next">
- <a ng-click="jobs.next()">Newer &rarr;</a>
- </li>
- </ul>
- </td>
- </tr>
- </tfoot>
- </table>
-
-</div>