diff options
Diffstat (limited to 'src/main/webapp/apps/jenkinsApp/server.html')
-rw-r--r-- | src/main/webapp/apps/jenkinsApp/server.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/webapp/apps/jenkinsApp/server.html b/src/main/webapp/apps/jenkinsApp/server.html index e15f43e..9213c73 100644 --- a/src/main/webapp/apps/jenkinsApp/server.html +++ b/src/main/webapp/apps/jenkinsApp/server.html @@ -2,6 +2,11 @@ <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> + <table class="table"> <tbody> <tr> @@ -14,7 +19,11 @@ </tr> <tr> <th>Visit</th> - <td>{{server.visit}}</td> + <td><a href="{{server.url}}">{{server.url}}</a></td> + </tr> + <tr> + <th>Job Count</th> + <td>{{server.jobCount}}</td> </tr> </tbody> </table> |