Subversion Repositories SmartDukaan

Rev

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

 <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">&times;</button>
                <h4 class="modal-title">Lead Activity
                </h4>
       </div>
  <div class="modal-body">
    <div class = "row">
       <div class="col-lg-12">
                
                     <table class="table  table-advance" id = "notify-order-table">
                                <tbody>
                                  <tr>
                                        <th>Remark</th>
                                                <th>ScheduleTimestamp</th>
                                        <th>Created Timestamp</th>
                         </tr>  
                                                        
                        
                                                
                                  #foreach($request in $leadActivity )
                                  <tr>          
                                 <td>$request.getRemark()</td>
                                 #if($request.getSchelduleTimestamp())
                                     <td>$request.getSchelduleTimestamp().format($dateTimeFormatter)</td>
                                     #else
                                       <td></td>
                                     #end
                                         <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
                      </tr>     
                                   #end
                            </tbody>
                     </table>
                 </div> 
              </div>    
          </div>
  
        <div class="modal-footer">
                        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
        
           </div>