Subversion Repositories SmartDukaan

Rev

Rev 25212 | Go to most recent revision | 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>
27
	    					<td>$scheme.getAmountType()</td>
24992 tejbeer 28
	    					<td class="currency">$scheme.getAmount()</td>
23026 ashik.ali 29
	    					<td>$scheme.getFormattedStartDateTime()</td>
25212 amit.gupta 30
	    					<td>$dateTimeFormatter.format($scheme.getEndDateTime())</td>
22860 ashik.ali 31
	    					<td>$scheme.getFormattedCreateTimestamp()</td>
32
	    					#if(($scheme.getActiveTimestamp()) && (!$scheme.getExpireTimestamp()))
33
	    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
34
	    					#else
35
	    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
36
	    					#end
37
	    					#if($scheme.getExpireTimestamp())
38
	    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
39
	    					#else
40
	    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
41
	    					#end
42
	    				</tr>
43
	    			#end
44
    			#else
45
    				<tr>
46
    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
47
    				</tr>
48
    			#end
49
			</tbody>
50
		</table>
51
	</div>
52
</div>