Subversion Repositories SmartDukaan

Rev

Rev 33725 | 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" style="height:540px;overflow:auto">
    <div class = "row">
       <div class="col-lg-12">
                
                     <table class="table  table-advance" id = "notify-order-table">
                                <tbody>
                                  <tr>
                                        <th>Remark</th>
                                        <th>Communication Type</th>
                                            <th>Auth User</th>
                                        
                                                <th>ScheduleTimestamp</th>
                                                <th>ClosureTimestamp</th>
                                        <th>Created Timestamp</th>
                         </tr>



                                                  #foreach($leadActivityModel in $leadActivity )
                                  <tr>
                                                  <td>$leadActivityModel.getRemark()</td>
                                                  #if($leadActivityModel.getCommunicationType())
                                                          <td>$leadActivityModel.getCommunicationType()</td>
                                     #else
                                       <td></td>
                                     #end
                                                  #if($leadActivityModel.getAuthId())
                                                          <td>$authUserMap.get($leadActivityModel.getAuthId()).getFullName()</td>
                                                  #else
                                                          <td></td>
                                                  #end
                                                  #if($leadActivityModel.getSchelduleTimestamp())
                                                          <td>$leadActivityModel.getSchelduleTimestamp().format($dateTimeFormatter)</td>
                                     #else
                                       <td></td>
                                     #end
                                                  #if($leadActivityModel.getClosureTimestamp())
                                                          <td>$leadActivityModel.getClosureTimestamp().format($dateTimeFormatter)</td>
                                     #else
                                       <td></td>
                                     #end
                                                  <td>$leadActivityModel.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>