Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
25979 tejbeer 1
 <div class="modal-header">
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
3
	        <h4 class="modal-title">Lead Activity
4
	        </h4>
5
       </div>
31249 tejbeer 6
  <div class="modal-body" style="height:540px;overflow:auto">
25979 tejbeer 7
    <div class = "row">
8
       <div class="col-lg-12">
9
 
10
	             <table class="table  table-advance" id = "notify-order-table">
11
	    			<tbody>
12
	    			  <tr>
13
				        <th>Remark</th>
31249 tejbeer 14
				        <th>Communication Type</th>
15
					    <th>Auth User</th>
16
 
25979 tejbeer 17
						<th>ScheduleTimestamp</th>
26958 tejbeer 18
						<th>ClosureTimestamp</th>
25979 tejbeer 19
	    				<th>Created Timestamp</th>
20
	                 </tr>	
21
 
22
 
23
 
24
			          #foreach($request in $leadActivity )
25
		    		  <tr>		
26
		    	         <td>$request.getRemark()</td>
31249 tejbeer 27
		    	         #if($request.getCommunicationType())
28
		    		     <td>$request.getCommunicationType()</td>
29
		    		     #else
30
		    		       <td></td>
31
		    		     #end
33725 ranu 32
						  #if($request.getAuthId())
33
							  <td>$authUserMap.get($request.getAuthId()).getFullName()</td>
34
						  #else
35
							  <td></td>
36
						  #end
25979 tejbeer 37
		    	         #if($request.getSchelduleTimestamp())
38
		    		     <td>$request.getSchelduleTimestamp().format($dateTimeFormatter)</td>
39
		    		     #else
40
		    		       <td></td>
41
		    		     #end
26958 tejbeer 42
		    		     #if($request.getClosureTimestamp())
43
		    		     <td>$request.getClosureTimestamp().format($dateTimeFormatter)</td>
44
		    		     #else
45
		    		       <td></td>
46
		    		     #end
25979 tejbeer 47
		    			 <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
48
                      </tr>	
49
			           #end
50
		    	    </tbody>
51
	             </table>
52
	         </div>	
53
	      </div>	
54
	  </div>
55
 
56
  	<div class="modal-footer">
57
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
58
 
59
	   </div>