Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29707 tejbeer 1
<section class="wrapper">
2
	<div class="row">
3
		<div class="col-lg-12">
4
			<h3 class="page-header">
5
				<i class="icon_document_alt"></i>Samsung Upgrade Offer
6
			</h3>
7
			<ol class="breadcrumb">
8
				<li><i class="fa fa-home"></i><a
9
					href="${rc.contextPath}/dashboard">Home</a></li>
10
				<li><i class="icon_document_alt"></i>Samsung Upgrade Offer</li>
11
			</ol>
12
		</div>
13
	</div>
14
 
15
 
16
 
17
 
18
		 <div class="col-lg-12">
19
        <table class="table table-border table-condensed table-bordered" id="upgrade-table" style="width:100%">
20
 
21
            <thead style="background:#F5F5F5;">
22
 
23
            <tr>
24
 
25
                <th>Name</th>
26
                <th>Mobile Number</th>
27
                <th>Email</th>
28
                <th>Old Imei</th>
29
                <th>New Imei</th>
30
                <th>Quote Id</th>
31
                <th>Order Id</th>
32
	            <th>Status</th>
33
	            <th>Action</th>
34
	            <th></th>
35
 
36
 
37
            </tr>
38
            </thead>
39
            <tbody>
40
                #foreach($suo in $samsungUpgradeOffers )
41
 
42
                <tr>
43
                   #parse("samsung-upgrade-offer-index.vm")
44
 
45
                </tr>
46
 
47
                #end
48
 
49
            </tbody>
50
 
51
        </table>
52
    </div>
53
 
54
</section>
55
 
56
 
57
 
58
<script  type="text/javascript">
59
 
60
    $(document).ready(function () {		
61
      var dtable = $('#upgrade-table').DataTable({
62
            "scrollX": true,
63
		    orderCellsTop: true,
64
		    fixedHeader: true
65
		    });
66
    });
67
 
68
</script>