Subversion Repositories SmartDukaan

Rev

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

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