Subversion Repositories SmartDukaan

Rev

Rev 23026 | Rev 23752 | 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>
6
					<th>Name</th>
7
					<th>Description</th>
8
					<th>Type</th>
9
					<th>Amount Type</th>
10
					<th>Amount</th>
23026 ashik.ali 11
					<th>Start Date Time</th>
12
					<th>End Date Time</th>
22860 ashik.ali 13
					<th>Created On</th>
14
					<th>Active</th>
15
					<th>Expire</th>
16
				</tr>
17
				#if(!$schemes.isEmpty())
18
	    			#foreach( $scheme in $schemes )
19
	    				<tr class="scheme-details" data="$scheme.getId()">
20
	    					<td>$scheme.getName()</td>
21
	    					<td>$scheme.getDescription()</td>
22
	    					<td>$scheme.getType()</td>
23
	    					<td>$scheme.getAmountType()</td>
24
	    					<td>$scheme.getAmount()</td>
23026 ashik.ali 25
	    					<td>$scheme.getFormattedStartDateTime()</td>
26
	    					<td>$scheme.getFormattedEndDateTime()</td>
22860 ashik.ali 27
	    					<td>$scheme.getFormattedCreateTimestamp()</td>
28
	    					#if(($scheme.getActiveTimestamp()) && (!$scheme.getExpireTimestamp()))
29
	    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
30
	    					#else
31
	    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
32
	    					#end
33
	    					#if($scheme.getExpireTimestamp())
34
	    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
35
	    					#else
36
	    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
37
	    					#end
38
	    				</tr>
39
	    			#end
40
    			#else
41
    				<tr>
42
    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
43
    				</tr>
44
    			#end
45
			</tbody>
46
		</table>
47
	</div>
48
</div>