Subversion Repositories SmartDukaan

Rev

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