| 24106 |
tejbeer |
1 |
<div class="row">
|
|
|
2 |
<div class="col-lg-12">
|
|
|
3 |
<table class="table table-striped table-advance table-hover">
|
|
|
4 |
<tbody>
|
|
|
5 |
<tr>
|
|
|
6 |
|
|
|
7 |
<th>Catalog Item Id</th>
|
|
|
8 |
<th>Rank Points</th>
|
|
|
9 |
<th>Feature</th>
|
|
|
10 |
<th>Status</th>
|
|
|
11 |
</tr>
|
|
|
12 |
#if(!$tagRanking.isEmpty())
|
|
|
13 |
#foreach( $request in $tagRanking )
|
|
|
14 |
<tr data="$request.getCatalogItemId()">
|
|
|
15 |
<td>$request.getCatalogItemId()</td>
|
|
|
16 |
<td>$request.getRankPoints()</td>
|
|
|
17 |
#if($request.getFeature())
|
|
|
18 |
<td>$request.getFeature()</td>
|
|
|
19 |
#else
|
|
|
20 |
<td>null</td>
|
|
|
21 |
#end
|
|
|
22 |
#if($request.getFeature())
|
|
|
23 |
<td><button class="btn btn-primary editfeature" data-requestid="$request.getCatalogItemId()" data-rank="$request.getRankPoints()" data-feature="$request.getFeature()" type="button" style="width:100%;border-radius:0px;">Edit</button>
|
|
|
24 |
</td>
|
|
|
25 |
#else
|
|
|
26 |
<td><button class="btn btn-primary editfeature" data-requestid="$request.getCatalogItemId()" data-rank="$request.getRankPoints()" data-feature="" type="button" style="width:100%;border-radius:0px;">Edit</button>
|
|
|
27 |
</td>
|
|
|
28 |
#end
|
|
|
29 |
</tr>
|
|
|
30 |
#end
|
|
|
31 |
#else
|
|
|
32 |
<tr>
|
|
|
33 |
<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
|
|
|
34 |
</tr>
|
|
|
35 |
#end
|
|
|
36 |
</tbody>
|
|
|
37 |
</table>
|
|
|
38 |
</div>
|
|
|
39 |
</div>
|