Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30876 tejbeer 1
 
2
 <script type="text/javascript">
3
 
4
    $(document).ready(function () {
5
     var dtable = $('#credittable').DataTable({
6
 
7
     });       
8
  });
9
</script>
10
 
11
 
29811 tejbeer 12
<section class="wrapper">
13
    <div class="row">
14
        <div class="col-lg-12">
15
            <h3 class="page-header"><i class="icon_document_alt"></i>Partners Credit Detail</h3>
16
            <ol class="breadcrumb">
17
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
18
                <li><i class="icon_document_alt"></i>Credit Details</li>
19
            </ol>
20
        </div>
21
    </div>
22
 
23
 
24
 
25
        <div class="col-lg-12">
30876 tejbeer 26
          <table class="table table-border table-condensed table-bordered" id="credittable" style="width:100%">
27
 
29811 tejbeer 28
 
30876 tejbeer 29
            <thead class="row htable" style="background:#F5F5F5;">
29811 tejbeer 30
 
31
            <tr>
29813 tejbeer 32
                <th> Id</th>
29811 tejbeer 33
                <th>Retailer Id</th>
34
                <th>Retailer Name</th>
29961 tejbeer 35
                <th>Pan</th>
29811 tejbeer 36
                <th>Gateway</th>
37
                <th>Sanctioned Amount</th>
38
	            <th>Available Amount</th>
39
	            <th>Credit Status</th>
33419 amit.gupta 40
	            <th>Avg Credit Days</th>
29840 tejbeer 41
	            <th>Updated on</th>
29811 tejbeer 42
	            <th>Action</th>
43
 
44
 
45
		    </tr>
46
            </thead>
47
            <tbody>
48
 
49
 
50
           #foreach($creditAccount in $creditAccounts)
51
 
52
 
53
              <tr>
54
                   #parse("partner-credit-detail-row.vm")
55
 
56
                </tr>
57
 
58
            #end
59
 
60
 
61
 
62
            </tbody>
63
 
64
        </table>
65
    </div>
66
 
67
 
68
 
69
 </section>
70