diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-12-20 10:53:48 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-12-20 10:53:48 +0100 |
commit | ee86231bc83d50505fca356f808bc7d13a2c9502 (patch) | |
tree | e50af3b405684df97cbb475732552821d06f20c9 /src/main/webapp/apps/jenkinsApp/server.html | |
parent | d1b36d2eae63a4aad321316488c2b8dcee8e9631 (diff) | |
download | esper-testing-ee86231bc83d50505fca356f808bc7d13a2c9502.tar.gz esper-testing-ee86231bc83d50505fca356f808bc7d13a2c9502.tar.bz2 esper-testing-ee86231bc83d50505fca356f808bc7d13a2c9502.tar.xz esper-testing-ee86231bc83d50505fca356f808bc7d13a2c9502.zip |
o Adding breadcrumbs for easier navigation.
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> |