aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/apps/personApp/person.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/apps/personApp/person.html')
-rw-r--r--src/main/webapp/apps/personApp/person.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/webapp/apps/personApp/person.html b/src/main/webapp/apps/personApp/person.html
index d9524ae..83aea0a 100644
--- a/src/main/webapp/apps/personApp/person.html
+++ b/src/main/webapp/apps/personApp/person.html
@@ -28,12 +28,14 @@
<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.date | date:'medium'}}</td>
<td>{{build.success}}</td>
+ <td><a href="/build/{{build.uuid}}">Details</a></td>
</tr>
</tbody>
</table>
@@ -41,7 +43,7 @@
<div id="builds" ng-show="mode == 'builds'">
<h3>Builds</h3>
- <table class="table .table-bordered">
+ <table class="table">
<thead>
<tr>
<th>Date</th>