summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-samplePages/drools-list.html
blob: b94b5c08c98f1ebe12089aac0d11e51021b3507d (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
<div id="page-content">
	<h1 class="heading-page">Drools List</h1>
	<div id="droolsTable" title="Drools List">
		<table class="striped" table-data="tableData">
			<thead>
				<tr>
					<th>Drools File Name</th>
					<th>Class Name</th>
					<th>Run Rule</th>
				</tr>
			</thead>
			<tbody type="body" ng-repeat="rowData in tableData">
				<tr>
					<td ng-bind="rowData['droolsFile']"></td>
					<td ng-bind="rowData['className']"></td>
					<td>
						<div>
							<a href="samplePage#/drools/{{rowData.droolsFile}}" class="icon-controls-playalt"></a>
						</div>
					</td>
				</tr>
			</tbody>
			
		</table>

		<div ng-if="tableData==null || tableData.length==0" align="center">No records found</div>
	</div>	
	<a href="samplePage#/drools/0">Go to Drools Rule Engine import page</a>
	
</div>