Subversion Repositories SmartDukaan

Rev

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