activiti.html 1009 Bytes
Newer Older
1
<div class="container">
2 3 4 5 6
	<table class="table table-striped">
		<col style="width:30%">
		<col style="width:auto">
		<thead>
			<tr>
7
				<th colspan="2">Overview <small class="pull-right"><a href="api/applications/{{ application.id }}/activiti" target="_blank">raw JSON</a></small></th>
8 9 10
			</tr>
		</thead>
		<tbody>
11 12 13
			<tr ng-repeat="entry in summary">
				<td style="word-break: break-all;">{{ entry.key }}</td>
				<td style="word-break: break-all;">{{ entry.value }}</td>
14 15 16 17 18 19 20 21 22
			</tr>
		</tbody>
	</table>
	<table class="table table-striped">
		<col style="width:30%">
		<col style="width:auto">
		<col style="width:auto">
		<thead>
			<tr>
23 24 25
				<th>Process</th>
				<th>Running</th>
				<th>Completed</th>
26 27 28
			</tr>
		</thead>
		<tbody>
29 30 31 32
			<tr ng-repeat="process in processes">
				<td style="word-break: break-all;">{{ process.name }}</td>
				<td style="word-break: break-all;">{{ process.running }}</td>
				<td style="word-break: break-all;">{{ process.completed }}</td>
33 34 35
			</tr>
		</tbody>
	</table>
36
</div>