Subversion Repositories SmartDukaan

Rev

Rev 27660 | 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">Item Wise Tertiary (Partner Pending Indents)
                </h4>
       </div>
  <div class="modal-body" style="height:400px;overflow:auto;">
    <div class = "row">
       <div class="col-lg-12">
                     <table class="table  table-advance" id = "partner-item-indent">
                                <tbody>
                                  <tr>
                                                  <th>Partner Name</th>
                                                <th>Quantity</th>
                                                <th>Price</th>

                                          </tr>

                                                  #foreach($item in $partnerPendingIndent)
                                                  <tr>
                                                          <td>$item.partnerName</td>
                                                          <td>$item.quantity</td>
                                                          <td>$item.price</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>