Subversion Repositories SmartDukaan

Rev

Rev 30876 | Blame | Compare with Previous | Last modification | View Log | RSS feed

 
 <script type="text/javascript">
   
    $(document).ready(function () {
     var dtable = $('#credittable').DataTable({
                            
     });       
  });
</script>


<section class="wrapper">
    <div class="row">
        <div class="col-lg-12">
            <h3 class="page-header"><i class="icon_document_alt"></i>Partners Credit Detail</h3>
            <ol class="breadcrumb">
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                <li><i class="icon_document_alt"></i>Credit Details</li>
            </ol>
        </div>
    </div>
    
    
    
        <div class="col-lg-12">
          <table class="table table-border table-condensed table-bordered" id="credittable" style="width:100%">
        

            <thead class="row htable" style="background:#F5F5F5;">

            <tr>
                <th> Id</th>
                <th>Retailer Id</th>
                <th>Retailer Name</th>
                <th>Pan</th>
                <th>Gateway</th>
                <th>Sanctioned Amount</th>
                    <th>Available Amount</th>
                    <th>Credit Status</th>
                    <th>Avg Credit Days</th>
                    <th>Updated on</th>
                    <th>Action</th>
                   
                         
                    </tr>
            </thead>
            <tbody>
            
         
           #foreach($creditAccount in $creditAccounts)
   
         
              <tr>
                   #parse("partner-credit-detail-row.vm")

                </tr>
            
            #end
            
          
            
            </tbody>

        </table>
    </div>
    
    
    
 </section>