Subversion Repositories SmartDukaan

Rev

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