Subversion Repositories SmartDukaan

Rev

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

Rev 23343 Rev 23752
Line 33... Line 33...
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
	<div id="scheme-item-search">
-
 
39
    		<div class="row">
-
 
40
    			<div class="col-lg-12">
-
 
41
                <div class="col-md-3 col-sm-3 col-xs-12 form-group pull-right top_search">
-
 
42
                  <div class="input-group">
-
 
43
                    <input type="text" class="form-control" id="scheme-item-search-text" placeholder="Search for ItemID..." value="$searchItem"  />
-
 
44
                    <span class="input-group-btn">
-
 
45
                      <button class="btn btn-primary submit" id="scheme-item-search-button" type="button">Go!</button>
-
 
46
                    </span>
-
 
47
                  </div>
-
 
48
                </div>
-
 
49
              </div>
-
 
50
         </div>
-
 
51
        </div>
-
 
52
	<div id="scheme-search">
-
 
53
    		<div class="row">
-
 
54
    			<div class="col-lg-12">
-
 
55
                <div class="col-md-3 col-sm-3 col-xs-12 form-group pull-right top_search">
-
 
56
                  <div class="input-group">
-
 
57
                    <input type="text" class="form-control" id="scheme-search-text" placeholder="Search for schemeID..." value="$searchTerm" />
-
 
58
                    <span class="input-group-btn">
-
 
59
                      <button class="btn btn-primary submit" id="scheme-search-button" type="button">Go!</button>
-
 
60
                    </span>
-
 
61
                  </div>
-
 
62
                </div>
-
 
63
              </div>
-
 
64
         </div>
-
 
65
        </div>
38
  	<div id="schemes-table">
66
  	<div id="schemes-table">
39
		<div class="row">
67
		<div class="row">
40
	    	<div class="col-lg-12">
68
	    	<div class="col-lg-12">
41
	    		<table class="table table-striped table-advance table-hover">
69
	    		<table class="table table-striped table-advance table-hover">
42
	    			<tbody>
70
	    			<tbody>
43
	    				<tr>
71
	    				<tr>
-
 
72
	    					<th>ID</th>
44
	    					<th>Name</th>
73
	    					<th>Name</th>
45
	    					<th>Description</th>
74
	    					<th>Description</th>
46
	    					<th>Type</th>
75
	    					<th>Type</th>
47
	    					<th>Amount Type</th>
76
	    					<th>Amount Type</th>
48
	    					<th>Amount</th>
77
	    					<th>Amount</th>
Line 53... Line 82...
53
	    					<th>Expire</th>
82
	    					<th>Expire</th>
54
	    				</tr>
83
	    				</tr>
55
	    				#if(!$schemes.isEmpty())
84
	    				#if(!$schemes.isEmpty())
56
			    			#foreach( $scheme in $schemes )
85
			    			#foreach( $scheme in $schemes )
57
			    				<tr class="scheme-details" data="$scheme.getId()">
86
			    				<tr class="scheme-details" data="$scheme.getId()">
-
 
87
			    					<td>$scheme.getId()</td>
58
			    					<td>$scheme.getName()</td>
88
			    					<td>$scheme.getName()</td>
59
			    					<td>$scheme.getDescription()</td>
89
			    					<td>$scheme.getDescription()</td>
60
			    					<td>$scheme.getType()</td>
90
			    					<td>$scheme.getType()</td>
61
			    					<td>$scheme.getAmountType()</td>
91
			    					<td>$scheme.getAmountType()</td>
62
			    					<td>$scheme.getAmount()</td>
92
			    					<td>$scheme.getAmount()</td>