Project

General

Profile

« Previous | Next » 

Revision 45692

View differences:

services.html
3 3
		<tr>
4 4
			<th>#</th>
5 5
			<th>Service</th>
6
			<th>WSDL</th>
7
			<th class="text-center">Status <button type="button" class="btn btn-xs btn-primary" ng-click="pingServices()">verify</button></th>
8
			<th class="text-right">Subscriptions</th>
6
			<th>Url</th>
7
			<th class="text-right">Status <button type="button" class="btn btn-xs btn-primary" ng-click="pingServices()">verify</button></th>
9 8
		</tr>
10 9
	</thead>
11 10
	<tbody ng-repeat="group in groups">
......
23 22
				<a href="#/profile/{{s.id}}" title="{{s.id}}" ng-show="s.id">{{s.name}}</a>
24 23
				<span ng-hide="s.id" class="text-muted"><i>missing profile</i></span>
25 24
			</td>
26
			<td><a href="{{s.wsdl}}">{{s.wsdl}}</a></td>
27
			<td class="text-center">
25
			<td><a href="{{s.url}}">{{s.url}}</a></td>
26
			<td class="text-right">
28 27
				<span class="label" ng-class="{'label-success' : s.status == 'ACTIVE', 'label-danger' : s.status == 'NOT_RESPONDING' || s.status == 'MISSING', 'label-default' : s.status == 'UNKNOWN', 'label-warning' : s.status == 'PENDING'}">{{s.status}}</span>
29 28
			</td>
30
			<td class="text-right">
31
				<a href="javascript:void(0)" 
32
					ng-show="s.subscriptions.length > 0" 
33
					data-toggle="modal" data-target="#subscriptionsModal"
34
					ng-click="setSubscriptions(s.subscriptions)">{{s.subscriptions.length}} subscription(s)</a>
35
			</td>
36 29
		</tr>
37 30
	</tbody>
38 31
</table>

Also available in: Unified diff