metrics.html 518 Bytes
Newer Older
Thomas Bosch committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<table class="table table-striped">
	<thead>
		<tr>
			<th>Application</th>
			<th>Version</th>
			<th>Status</th>
			<th></th>
			<th></th>
			<th></th>
		</tr>
	</thead>
	<tbody>
		<tr ng-repeat="application in applications">
			<td>{{ application.id }}</td>
			<td>{{ application.version }}</td>
			<td>{{ application.status }}</td>
			<td></td>
			<td>
				<!-- <button type="button" ng-click="editService(service.id)" class="btn btn-success">Edit</button> -->
			</td>
		</tr>
	</tbody>
</table>
 Metrics-Endpoint