Subversion Repositories SmartDukaan

Rev

Rev 29813 | Go to most recent revision | Details | 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>
20
                <th>Retailer Id</th>
21
                <th>Retailer Name</th>
22
                <th>Gateway</th>
23
                <th>Sanctioned Amount</th>
24
	            <th>Available Amount</th>
25
	            <th>Credit Status</th>
26
	            <th>Description</th>
27
	            <th>Action</th>
28
 
29
 
30
		    </tr>
31
            </thead>
32
            <tbody>
33
 
34
 
35
           #foreach($creditAccount in $creditAccounts)
36
 
37
 
38
              <tr>
39
                   #parse("partner-credit-detail-row.vm")
40
 
41
                </tr>
42
 
43
            #end
44
 
45
 
46
 
47
            </tbody>
48
 
49
        </table>
50
    </div>
51
 
52
 
53
 
54
 </section>
55
 
56
 
57
 <script type="text/javascript">
58
 
59
    $(document).ready(function () {
60
     var dtable = $('#kredftable').DataTable({
61
             "scrollX": true,
62
             "scrollY": "518px",
63
              scrollCollapse: true,
64
             "fixedHeader": true,
65
 
66
 
67
     });   
68
 
69
 
70
 
71
 
72
  });
73
 
74
 
75
 
76
</script>