server/admin/static/views/repositories.html

26 lines
636 B
HTML

<div class="card mt-3 mb-5">
<div class="card-header bg-secondary text-light">
<h3 class="mb-0">
Repositories
</h3>
</div>
<table class="table table-hover table-striped mb-0">
<thead>
<tr>
<th>Chemin</th>
<th>Branche</th>
<th>Commit</th>
<th>Plus récent</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="repository in repositories">
<td>{{ repository.path }}</td>
<td>{{ repository.branch }}</td>
<td>{{ repository.hash }}</td>
<td><repository-uptodate repository="repository" /></td>
</tr>
</tbody>
</table>
</div>