Subversion Repositories SmartDukaan

Rev

Rev 25979 | 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>
6
  <div class="modal-body">
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>
14
						<th>ScheduleTimestamp</th>
26958 tejbeer 15
						<th>ClosureTimestamp</th>
25979 tejbeer 16
	    				<th>Created Timestamp</th>
17
	                 </tr>	
18
 
19
 
20
 
21
			          #foreach($request in $leadActivity )
22
		    		  <tr>		
23
		    	         <td>$request.getRemark()</td>
24
		    	         #if($request.getSchelduleTimestamp())
25
		    		     <td>$request.getSchelduleTimestamp().format($dateTimeFormatter)</td>
26
		    		     #else
27
		    		       <td></td>
28
		    		     #end
26958 tejbeer 29
		    		     #if($request.getClosureTimestamp())
30
		    		     <td>$request.getClosureTimestamp().format($dateTimeFormatter)</td>
31
		    		     #else
32
		    		       <td></td>
33
		    		     #end
25979 tejbeer 34
		    			 <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
35
                      </tr>	
36
			           #end
37
		    	    </tbody>
38
	             </table>
39
	         </div>	
40
	      </div>	
41
	  </div>
42
 
43
  	<div class="modal-footer">
44
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
45
 
46
	   </div>