Subversion Repositories SmartDukaan

Rev

Rev 24917 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23419 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>Item Id</th>
7
	    					<th>Description</th>
8
	    					<th>Advance Amount</th>
9
	    					<th>Tentative Amount</th>
10
	    					<th>Created On</th>
11
	    					<th>Active</th>
12
	    					<th>Expire</th>
13
	    				</tr>
14
	    				#if(!$prebookingListings.isEmpty())
15
			    			#foreach( $prebookingListing in $prebookingListings )
16
			    				<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
24917 tejbeer 17
			    					<td>$prebookingListing.getCatalogId()</td>
24087 amit.gupta 18
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
24992 tejbeer 19
			    					<td class="currency">$prebookingListing.getAdvanceAmount()</td>
20
			    					<td class="currency">$prebookingListing.getTentativeAmount()</td>
23419 ashik.ali 21
			    					<td>$prebookingListing.getFormattedCreateTimestamp()</td>
22
			    					#if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
23
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
24
			    					#else
25
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
26
			    					#end
27
			    					#if($prebookingListing.getExpireTimestamp())
28
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
29
			    					#else
30
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
31
			    					#end
32
			    				</tr>
33
			    			#end
34
		    			#else
35
		    				<tr>
36
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
37
		    				</tr>
38
		    			#end
39
	    			</tbody>
40
	    		</table>
41
	    	</div>
42
	    </div>