Subversion Repositories SmartDukaan

Rev

Rev 26763 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22860 ashik.ali 1
<div class="row">
2
	<div class="col-lg-12">
3
		<table class="table table-striped table-advance table-hover">
4
			<tbody>
5
				<tr>
23752 govind 6
					<th>ID</th>
22860 ashik.ali 7
					<th>Name</th>
8
					<th>Description</th>
26763 tejbeer 9
					<th>Partner Type</th>
22860 ashik.ali 10
					<th>Type</th>
11
					<th>Amount Type</th>
12
					<th>Amount</th>
23026 ashik.ali 13
					<th>Start Date Time</th>
14
					<th>End Date Time</th>
22860 ashik.ali 15
					<th>Created On</th>
16
					<th>Active</th>
17
					<th>Expire</th>
18
				</tr>
19
				#if(!$schemes.isEmpty())
20
	    			#foreach( $scheme in $schemes )
21
	    				<tr class="scheme-details" data="$scheme.getId()">
23752 govind 22
	    					<td>$scheme.getId()</td>
22860 ashik.ali 23
	    					<td>$scheme.getName()</td>
24
	    					<td>$scheme.getDescription()</td>
26763 tejbeer 25
	    					<td>$scheme.getPartnerType()</td>
22860 ashik.ali 26
	    					<td>$scheme.getType()</td>
27395 amit.gupta 27
	    					<td>$scheme.getAmountModel()</td>
23026 ashik.ali 28
	    					<td>$scheme.getFormattedStartDateTime()</td>
25212 amit.gupta 29
	    					<td>$dateTimeFormatter.format($scheme.getEndDateTime())</td>
22860 ashik.ali 30
	    					<td>$scheme.getFormattedCreateTimestamp()</td>
31
	    					#if(($scheme.getActiveTimestamp()) && (!$scheme.getExpireTimestamp()))
32
	    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
33
	    					#else
34
	    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
35
	    					#end
36
	    					#if($scheme.getExpireTimestamp())
37
	    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
38
	    					#else
39
	    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
40
	    					#end
41
	    				</tr>
42
	    			#end
43
    			#else
44
    				<tr>
45
    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
46
    				</tr>
47
    			#end
48
			</tbody>
49
		</table>
50
	</div>
51
</div>