Subversion Repositories SmartDukaan

Rev

Rev 26474 | Rev 26476 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26474 Rev 26475
Line 1... Line 1...
1
<section>
1
<section>
2
 
2
 
3
 
3
 
4
<script>
-
 
5
 
-
 
6
 $(".approve").click(function(){
-
 
7
        $("#newAddwalletModal").modal({backdrop: false});
-
 
8
    });
-
 
9
    
-
 
10
    $(".confirm").click(function(){
-
 
11
        $("#newAddwalletModal").modal({backdrop: false});
-
 
12
    });
-
 
13
    
-
 
14
     $(".approved").click(function(){
-
 
15
        $("#newAddwalletModal").modal({backdrop: false});
-
 
16
    });
-
 
17
    
-
 
18
      $(".cancel").click(function(){
-
 
19
        $("#newAddwalletModal").modal({backdrop: false});
-
 
20
    });
-
 
21
</script>
-
 
22
 
-
 
23
<style>
4
<!--<style>
24
	.table-striped > tbody > tr:nth-child(odd) > td{
5
	.table-striped > tbody > tr:nth-child(odd) > td{
25
  		background: white;
6
  		background: white;
26
  		background-color: white;
7
  		background-color: white;
27
	}
8
	}
28
	.table-striped > tbody > tr:nth-child(even) > td{
9
	.table-striped > tbody > tr:nth-child(even) > td{
Line 43... Line 24...
43
  		text-decoration: none;
24
  		text-decoration: none;
44
	}
25
	}
45
	.sale-details{
26
	.sale-details{
46
		cursor:pointer;
27
		cursor:pointer;
47
	}
28
	}
48
</style>
29
</style>-->
49
 
30
 
50
<section class="wrapper">
31
<section class="wrapper">
51
	<div class="row">
32
	<div class="row">
52
		<div class="col-lg-12">
33
		<div class="col-lg-12">
53
			<h3 class="page-header"><i class="icon_document_alt"></i>Details</h3>
34
			<h3 class="page-header"><i class="icon_document_alt"></i>Details</h3>
Line 60... Line 41...
60
 
41
 
61
 
42
 
62
<div class="row">
43
<div class="row">
63
					
44
					
64
					<div class="col-lg-12">
45
					<div class="col-lg-12">
65
				 <table class="table table-striped table-advance table-hover">
46
				 <table id="authretailerstats" class="table table-striped table-advance table-hover">
66
	    			<tbody>
47
	    			<tbody>
67
	    				<tr>
48
	    				<tr>
68
	    				<th>Sale</th>
49
	    				<th>Sale</th>
69
	    				<th>lmtd</th>
50
	    				<th>lmtd</th>
70
	    				<th>mtd</th>
51
	    				<th>mtd</th>
Line 91... Line 72...
91
						
72
						
92
			
73
			
93
			</div>
74
			</div>
94
					
75
					
95
 
76
 
96
</section>
-
 
97
77
</section>
-
 
78
<script type="text/javascript">
-
 
79
$(document).ready(function() {
-
 
80
    indentTable = $('#authretailerstats').DataTable({
-
 
81
	});
-
 
82
}
-
 
83
</script>
-
 
84
98
85