Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26817 amit.gupta 1
<div class="row">
2
	<div class="col-lg-4">
3
		<h1></h1>
4
	</div>
5
</div>
6
<div class="row">
7
<table class="table table-bordered">
8
<th>
9
	<tr>
10
		<td>Name</td>
11
		<td>Line 1</td>
12
		<td>Line 2</td>
13
		<td>City</td>
14
		<td>State</td>
15
		<td>Pin</td>
16
		<td>Mobile</td>
17
	</tr>
18
</th>
19
<tbody>
20
#foreach($customAddress in $customCustomer.getAddresses())
21
	<tr>
22
		<td>$customAddress.getName()</td>
23
		<td>$customAddress.getLine1()</td>
24
		<td>$customAddress.getLine2()</td>
25
		<td>$customAddress.getCity()</td>
26
		<td>$customAddress.getState()</td>
27
		<td>$customAddress.getPinCode()</td>
28
		<td>$customAddress.getPhoneNumber()</td>
29
		<td>$customAddress.getPhoneNumber()</td>
30
	</tr>
31
#end
32
</tbody>
33
</table>
34
</div>
35
<script type="text/javascript">
36
	addressSize = $customerAddress.getSize();
37
</script>