diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-11 23:46:57 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-11 23:46:57 +0100 |
commit | 17419dac386a091c57c190ee772279528336e218 (patch) | |
tree | ebcd92602b7e206254db5ea68b3740c08e0ef227 /src/main/resources/webapp/apps/frontPageApp/person.html | |
parent | 0eecb30bd90bce96730fdf89091c610069af590d (diff) | |
download | esper-testing-17419dac386a091c57c190ee772279528336e218.tar.gz esper-testing-17419dac386a091c57c190ee772279528336e218.tar.bz2 esper-testing-17419dac386a091c57c190ee772279528336e218.tar.xz esper-testing-17419dac386a091c57c190ee772279528336e218.zip |
o Prettier build list.
Diffstat (limited to 'src/main/resources/webapp/apps/frontPageApp/person.html')
-rwxr-xr-x | src/main/resources/webapp/apps/frontPageApp/person.html | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/person.html b/src/main/resources/webapp/apps/frontPageApp/person.html index ba5c18d..cec5738 100755 --- a/src/main/resources/webapp/apps/frontPageApp/person.html +++ b/src/main/resources/webapp/apps/frontPageApp/person.html @@ -46,15 +46,6 @@ <div class="span6"> <h3>Recent builds</h3> <table class="table"> - <thead> - <!-- - <tr> - <th>Date</th> - <th>Success</th> - <th></th> - </tr> - --> - </thead> <tbody> <tr ng-repeat="build in recentBuilds" class="{{{true: 'success', false: 'error'}[build.success]}}"> <td>{{build.timestamp | date:'medium'}}</td> @@ -68,7 +59,7 @@ <div id="builds" ng-show="mode == 'builds'"> <h3>Builds</h3> - <table class="table"> + <table class="table text-baseline"> <thead> <tr> <th>Date</th> @@ -79,6 +70,9 @@ <tr ng-repeat="build in builds.rows" class="{{{true: 'build-success', false: 'build-error'}[build.success]}}"> <td>{{build.timestamp | date:'medium'}}</td> <td>{{build.success}}</td> + <td> + <a class="btn btn-small" href="/build/{{build.uuid}}"><i class="icon-chevron-right"></i></a> + </td> </tr> </tbody> <tfoot> |