Subversion Repositories SmartDukaan

Rev

Rev 25651 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
25649 tejbeer 1
 
2
              <div class="row">
3
					<div class="col-lg-12">
4
 
5
					<table class="table table-striped table-advance table-hover">
6
	    			<tbody>
7
	    					#if(!$notifications.isEmpty())
8
			    			#foreach( $request in $notifications )
9
			    				<tr class="notifications" data="$request.getId()">
10
			    				#if(!$request.isAnnoucement())
11
			    					<td><i class="fas fa-bell"></i></td>
12
			    				#else
13
			    				    <td><i class="fa fa-bullhorn" aria-hidden="true"></i></td>
14
			    				#end	
15
			    					<td> <span style = "font-size:12px"><b>$request.getTitle()</b></span> <br> <small> $request.getMessage()  </small></td>
16
 
17
 
18
			    	            </tr>	
19
			    	   #end
20
		    			#else
21
		    				<tr>
22
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
23
		    				</tr>
24
		    			#end
25
	    			</tbody>
26
	    		       </table>
27
					</div>
28
 
29
					</div>
30