Subversion Repositories SmartDukaan

Rev

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

Rev 27759 Rev 31274
Line 18... Line 18...
18
	}
18
	}
19
.modal-content{
19
.modal-content{
20
		background : white;
20
		background : white;
21
	}
21
	}
22
	.modelHeaderCustom{
22
	.modelHeaderCustom{
23
		font-size:14px;
-
 
24
		font-weight:bold;
23
		font-weight:bold;
25
	}
24
	}
26
	.border-highlight{
25
	.border-highlight{
27
		border : 3px solid red;
26
		border : 3px solid red;
28
	}
27
	}
Line 158... Line 157...
158
 
157
 
159
<div class="row">
158
<div class="row">
160
	#if(!$insurancePolicies.isEmpty())
159
	#if(!$insurancePolicies.isEmpty())
161
		<div class="col-lg-8">
160
		<div class="col-lg-8">
162
			<h4>INSURANCE DETAILS</h4>
161
			<h4>INSURANCE DETAILS</h4>
163
    		<table class="table table-striped table-advance">
162
			<table class="table table-striped table-advance">
164
    			<tbody>
163
				<tbody>
165
    				<tr>
164
				<tr>
-
 
165
					<th>Plan Name</th>
166
    					<th>Description</th>
166
					<th>Device</th>
167
    					<th>Serial Number</th>
167
					<th>Serial Number</th>
168
    					<th>Provider Name</th>
168
					<th>Provider Name</th>
169
    					<th>Amount</th>
169
					<th>Amount</th>
170
    				</tr>
170
				</tr>
171
    				#if(!$insurancePolicies.isEmpty())
171
					#if(!$insurancePolicies.isEmpty())
172
		    			#foreach( $insurancePolicy in $insurancePolicies )
172
						#foreach( $insurancePolicy in $insurancePolicies )
173
		    				<tr>
173
						<tr>
-
 
174
							<td>$insurancePolicy.getPolicyPlan()</td>
174
		    					<td>$insurancePolicy.getBrand() $insurancePolicy.getModelName()</td>
175
							<td>$insurancePolicy.getBrand() $insurancePolicy.getModelName()</td>
175
		    					<td>$insurancePolicy.getSerialNumber()</td>
176
							<td>$insurancePolicy.getSerialNumber()</td>
176
		    					<td>$insurancePolicy.getInsuranceProvider().getName()</td>
177
							<td>$insurancePolicy.getInsuranceProvider().getName()</td>
177
		    					<td>$insurancePolicy.getSaleAmount()</td>
178
							<td>$insurancePolicy.getSaleAmount()</td>
178
		    				</tr>
179
						</tr>
179
		    			#end
180
						#end
180
	    			#end
181
	    			#end
181
    			</tbody>
182
    			</tbody>
182
    		</table>
183
    		</table>
183
    	</div>
184
    	</div>
184
	#end
185
	#end