diff options
Diffstat (limited to 'src/main/webapp/apps/jenkinsApp/job.html')
-rwxr-xr-x | src/main/webapp/apps/jenkinsApp/job.html | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/main/webapp/apps/jenkinsApp/job.html b/src/main/webapp/apps/jenkinsApp/job.html deleted file mode 100755 index 8942ab7..0000000 --- a/src/main/webapp/apps/jenkinsApp/job.html +++ /dev/null @@ -1,61 +0,0 @@ -<div class="container"> - - <navbar/> - - <div class="page-header"> - <h1>Jenkins Job</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 class="active">Job</li> - </ul> - - <h3>Overview</h3> - - <table class="table"> - <tbody> - <tr> - <th>URL</th> - <td><a href="{{details.job.displayName}}">{{details.job.displayName}}</a></td> - </tr> - <tr> - <th>Build count</th> - <td>{{details.buildCount}}</td> - </tr> - </tbody> - </table> - - <h3>Recent Builds</h3> - <table class="table"> - <thead> - <tr> - <th>Build</th> - <th>Result</th> - <th></th> - </tr> - </thead> - <tbody> - <tr ng-repeat="build in builds.rows" class="{{{true: 'success', false: 'error'}[build.success]}}"> - <td>{{build.timestamp | date:'medium'}}</td> - <td>{{build.result}}</td> - <td><a class="btn" ng-click="showBuild(build.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: builds.startIndex == 0}"> - <a ng-click="builds.prev()">← Older</a> - </li> - <li class="next"> - <a ng-click="builds.next()">Newer →</a> - </li> - </ul> - </td> - </tr> - </tfoot> - </table> -</div> |