Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
24098 tejbeer 1
<div class="row" style= "margin-top:15px;" >
2
	    	<div class="col-lg-12">
3
		<table class="table table-striped table-advance table-hover">
4
	    			<tbody>	
5
	                    	#if(!$notificationData.isEmpty())
33959 aman.kumar 6
								#foreach( $notificationDataModel in $notificationData)
7
								<tr class="notification-data" data="$notificationDataModel.getId()">
8
 
9
									<td>$notificationDataModel.getData()
10
										<div style="border-top: 0px solid #fafafa;" align="right"><small>Published
11
											On $notificationDataModel.getCreated_timestamp().format($dateTimeFormatter)</small>
12
										</div>
13
									</td>
24098 tejbeer 14
			    				</tr>	
15
			    	   #end
16
		    			#else
17
		    				<tr>
18
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
19
		    				</tr>
20
		    			#end
21
	    			</tbody>
22
	    		</table>
23
	    	</div>
24
	    	</div>	
25
 
26
 
27