Subversion Repositories SmartDukaan

Rev

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

Rev 23342 Rev 23343
Line 23... Line 23...
23
	.sale-details{
23
	.sale-details{
24
		cursor:pointer;
24
		cursor:pointer;
25
	}
25
	}
26
</style>
26
</style>
27
 
27
 
28
<section class="wrapper">            
28
<section class="wrapper">
29
	<div class="row">
29
	<div class="row">
30
		<div class="col-lg-12">
30
		<div class="col-lg-12">
31
			<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
31
			<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
32
			<ol class="breadcrumb">
32
			<ol class="breadcrumb">
33
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
33
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
34
				<li><i class="icon_document_alt"></i>SCHEMES</li>						  	
34
				<li><i class="icon_document_alt"></i>SCHEMES</li>						  	
35
			</ol>
35
			</ol>
36
		</div>
36
		</div>
37
	</div>
37
	</div>
38
	
-
 
39
  	<div id="schemes-table">
38
  	<div id="schemes-table">
40
		<div class="row">
39
		<div class="row">
41
	    	<div class="col-lg-12">
40
	    	<div class="col-lg-12">
42
	    		<table class="table table-striped table-advance table-hover">
41
	    		<table class="table table-striped table-advance table-hover">
43
	    			<tbody>
42
	    			<tbody>
44
	    				<tr>
43
	    				<tr>
45
	    					<th>Id</th>
-
 
46
	    					<th>Name</th>
44
	    					<th>Name</th>
47
	    					<th>Description</th>
45
	    					<th>Description</th>
48
	    					<th>Type</th>
46
	    					<th>Type</th>
49
	    					<th>Amount Type</th>
47
	    					<th>Amount Type</th>
50
	    					<th>Amount</th>
48
	    					<th>Amount</th>
Line 55... Line 53...
55
	    					<th>Expire</th>
53
	    					<th>Expire</th>
56
	    				</tr>
54
	    				</tr>
57
	    				#if(!$schemes.isEmpty())
55
	    				#if(!$schemes.isEmpty())
58
			    			#foreach( $scheme in $schemes )
56
			    			#foreach( $scheme in $schemes )
59
			    				<tr class="scheme-details" data="$scheme.getId()">
57
			    				<tr class="scheme-details" data="$scheme.getId()">
60
			    					<td>$scheme.getId()</td>
-
 
61
			    					<td>$scheme.getName()</td>
58
			    					<td>$scheme.getName()</td>
62
			    					<td>$scheme.getDescription()</td>
59
			    					<td>$scheme.getDescription()</td>
63
			    					<td>$scheme.getType()</td>
60
			    					<td>$scheme.getType()</td>
64
			    					<td>$scheme.getAmountType()</td>
61
			    					<td>$scheme.getAmountType()</td>
65
			    					<td>$scheme.getAmount()</td>
62
			    					<td>$scheme.getAmount()</td>