2015-04-08 22:43:59 +00:00
|
|
|
<h1>Dashboard</h1>
|
|
|
|
|
|
|
|
<a href="/new">New</a>
|
|
|
|
<a href="/profile">Settings</a>
|
|
|
|
<a href="/users" ng-if="user.admin">User Management</a>
|
|
|
|
|
|
|
|
<table border="1">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Repo</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>Number</th>
|
|
|
|
<th>Started</th>
|
|
|
|
<th>Duration</th>
|
|
|
|
<th>Branch</th>
|
|
|
|
<th>Commit</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="repo in repos">
|
|
|
|
<td><a ng-href="{{ repo.full_name }}">{{ repo.full_name }}</a></td>
|
|
|
|
<td>{{ repo.last_build.state }}</td>
|
|
|
|
<td><a ng-href="{{ repo.full_name }}/{{ repo.last_build.number }}">{{ repo.last_build.number }}</a></td>
|
|
|
|
<td>{{ repo.last_build.started_at | fromNow }}</td>
|
|
|
|
<td>{{ repo.last_build.duration | toDuration }}</td>
|
|
|
|
<td>{{ repo.last_build.head_commit.ref || repo.last_build.pull_request.source.ref }}</td>
|
|
|
|
<td>{{ repo.last_build.head_commit.sha || repo.last_build.pull_request.source.ref }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2015-04-30 21:41:52 +00:00
|
|
|
</table>
|