Subversion Repositories SmartDukaan

Rev

Rev 26958 | Rev 33725 | 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
32
		    		      <td>$authUserMap.get($request.getAuthId()).getFullName()</td>
33
 
25979 tejbeer 34
		    	         #if($request.getSchelduleTimestamp())
35
		    		     <td>$request.getSchelduleTimestamp().format($dateTimeFormatter)</td>
36
		    		     #else
37
		    		       <td></td>
38
		    		     #end
26958 tejbeer 39
		    		     #if($request.getClosureTimestamp())
40
		    		     <td>$request.getClosureTimestamp().format($dateTimeFormatter)</td>
41
		    		     #else
42
		    		       <td></td>
43
		    		     #end
25979 tejbeer 44
		    			 <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
45
                      </tr>	
46
			           #end
47
		    	    </tbody>
48
	             </table>
49
	         </div>	
50
	      </div>	
51
	  </div>
52
 
53
  	<div class="modal-footer">
54
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
55
 
56
	   </div>