diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-19 10:20:43 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-19 10:20:43 +0100 |
commit | fd953370ba0daea03c5de58aac30e097f86826c6 (patch) | |
tree | b41143ecd8e65bfeb1ceceb2500c23146ca7780e /src/main/resources/webapp/apps/jenkinsApp/server.html | |
parent | eb6cbd28992cec9025a8e95f8f03ae3839699e0b (diff) | |
download | esper-testing-fd953370ba0daea03c5de58aac30e097f86826c6.tar.gz esper-testing-fd953370ba0daea03c5de58aac30e097f86826c6.tar.bz2 esper-testing-fd953370ba0daea03c5de58aac30e097f86826c6.tar.xz esper-testing-fd953370ba0daea03c5de58aac30e097f86826c6.zip |
o Making sure every resource that supports paging has a default ordering.
o Fixing mis-mapped JenkinsJob.
o Better navigation in the Jenkins app, <a> links are now proper links.
Diffstat (limited to 'src/main/resources/webapp/apps/jenkinsApp/server.html')
-rwxr-xr-x[-rw-r--r--] | src/main/resources/webapp/apps/jenkinsApp/server.html | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/main/resources/webapp/apps/jenkinsApp/server.html b/src/main/resources/webapp/apps/jenkinsApp/server.html index 7fbd9f5..fb821d3 100644..100755 --- a/src/main/resources/webapp/apps/jenkinsApp/server.html +++ b/src/main/resources/webapp/apps/jenkinsApp/server.html @@ -8,7 +8,7 @@ </div> <ul class="breadcrumb"> - <li><a ng-click="showServers()">All Servers</a> <span class="divider">/</span></li> + <li><a href="/jenkins/#/">All Servers</a> <span class="divider">/</span></li> <li class="active">Server</li> </ul> @@ -25,24 +25,18 @@ </tr> <tr> <th>Stats</th> - <td>{{server.jobCount}} jobs, {{server.buildCount}} builds</td> + <td>{{server.jobCount}} jobs</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> + <td>{{job.createdDate | date:'medium'}}</td> + <td><a class="btn" href="/jenkins/#/server/{{server.uuid}}/job/{{job.uuid}}"><i class="icon-chevron-right"></i></a></td> </tr> </tbody> <tfoot> |