Subversion Repositories SmartDukaan

Rev

Rev 24144 | Go to most recent revision | Details | 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())
6
			    			#foreach( $request in $notificationData)
7
			    				<tr class="notification-data" data="$request.getId()">
8
			    					<td>$request.getId()</td>
9
			    					<td>$request.getData()</td>
10
			    				</tr>	
11
			    	   #end
12
		    			#else
13
		    				<tr>
14
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
15
		    				</tr>
16
		    			#end
17
	    			</tbody>
18
	    		</table>
19
	    	</div>
20
	    	</div>	
21
 
22
 
23