summaryrefslogtreecommitdiffstats
path: root/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr_topic_client_list_popup_template.html
blob: e78baee6d6168865c58274538af52dbc30a47cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<script type="text/ng-template" id="topic_client_list_popup.html">

	<div class="b2b-modal-header ng-scope">
		<h2 id="myModalLabel" modal-title="">{{dbcapp.label}}</h2>
		<div class="corner-button in">
			<button type="button" class="close" aria-label="Close"
				ng-click="$dismiss('cancel')"></button>
		</div>
	</div>

	<div class="b2b-modal-body ng-scope ng-isolate-scope" tabindex="0"
		role="region" aria-label="Modal body content">

		<table 
			id="clients-table"
			table-data="dbcapp.showTopic.clients" 
			current-page="dbcapp.currentPageIgnored" 
			next-sort="dbcapp.nextSortIgnored">

			<thead type="header">
				<tr>
					<th sortable="false">MR Client ID</th>
					<th sortable="false">DCAE Location Name</th>
					<th sortable="false">Action</th>
					<th sortable="false">Client Role</th>
					<th sortable="false">Last Modified</th>
					<th sortable="false">Status</th>
				</tr>
			</thead>
			<tbody type="body" ng-repeat="rowData in dbcapp.showTopic.clients">
				<tr>
					<td ng-bind="rowData.mrClientId" />
					<td	ng-bind="rowData.dcaeLocationName" />
					<td ng-bind="rowData.action"/>
					<td ng-bind="rowData.clientRole"/>
					<td ng-bind="rowData.lastMod" />
					<td ng-bind="rowData.status" />
				</tr>
			</tbody>
		</table>
		
	</div>
		
	<div class="b2b-modal-footer ng-scope ng-isolate-scope">
		<div class="cta-button-group in">
			<button class="btn btn-alt btn-small" type="button"
				ng-click="$dismiss('cancel')">
				Close
			</button>
		</div>
	</div>
	
</script>