Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
25690 amit.gupta 1
		<div class="row">
2
			<div class="col-lg-12">
25649 tejbeer 3
 
25690 amit.gupta 4
			<table class="table table-striped table-advance table-hover">
5
	   			<tbody>
6
	   			#if(!$notifications.isEmpty())
7
		    		#foreach( $request in $notifications )
8
		    		<tr class="notifications" data="$request.getCid()">			    		    #if($request.getMessageType()=="announcement")
9
			    		<td width=32px;><i class="fa fa-bullhorn "></i></td>
10
			    		#elseif($request.getMessageType()=="scheme")
11
			    		<td width=32px;><i class="fa fa-tags"></i></td>
12
			   			#else
13
			   			<td width=32px;><i class="fas fa-bell"></i></td>
14
			   			#end		
15
			   			<td>
16
		    				<div style="float:right;font-size:12px;">$request.getDate().format($dateTimeFormatter)</div>
17
							<span><b>$request.getTitle()</b></span>
18
							<br> 
19
							<span font-size:13px;> $request.getMessage()</span>
20
							<div style="float:right">
21
							#if($request.getDocumentId())
22
							<a 
23
				    	    	href="javascript:void(0)"  style="color:#337ab7;"  
24
				    	        onclick="downloadNotifyDocument($request.getDocumentId(),$request.getCid(), '$request.getDocumentName()')">
25
			    	            	$request.getDocumentName()&nbsp;
26
			    	            <i class="fa fa-download"></i>
27
							</a>
28
							#end
29
							</div>
30
						</td>
31
					</tr>	
32
					#end
33
		    	#else
25683 tejbeer 34
		    		<tr>
25690 amit.gupta 35
		    			<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
36
			   		</tr>
37
		   		#end  
38
		    	</tbody>
39
			</table>
40
		</div>				
41
	</div>
25649 tejbeer 42