| 2674 |
vikas |
1 |
<span>Name: $action.getUser().getName()</span><br/>
|
|
|
2 |
<span>Email: $action.getUser().getEmail()</span><br/>
|
|
|
3 |
<span>Communication Email: $action.getUser().getCommunicationEmail()</span><br/><br/>
|
|
|
4 |
<span>Date Of Birth: $action.getUser().getDateOfBirth()</span><br/>
|
|
|
5 |
<span>Phone: $action.getUser().getMobileNumber()</span><br/><br/>
|
| 3499 |
mandeep.dh |
6 |
<span>Sex: $action.getUser().getSex()</span><br/>
|
|
|
7 |
<span>Trust Level: $action.getUser().getTrustLevel()</span><br/>
|
|
|
8 |
#if($action.isTrustLevelEditable())
|
|
|
9 |
<span >Increase Trust level by: </span>
|
|
|
10 |
<input userId="$action.getUserId()" type="text" value="0" id="trust-level-increase"/>
|
|
|
11 |
<input type="button" value="Increase" class="trust-level-increase"/><br />
|
|
|
12 |
#end
|
|
|
13 |
<br/>
|
|
|
14 |
|
| 2674 |
vikas |
15 |
#set($address = $action.getPrimaryAdddress())
|
|
|
16 |
#if($address)
|
|
|
17 |
<span>Primary Address ($address.getName())</span><br/>
|
|
|
18 |
<span>
|
|
|
19 |
#if($address.getLine1()) $address.getLine1(), #end
|
|
|
20 |
#if($address.getLine2()) $address.getLine2(), #end
|
|
|
21 |
#if($address.getLandmark()) $address.getLandmark(), #end
|
|
|
22 |
#if($address.getCity()) $address.getCity(), #end
|
|
|
23 |
#if($address.getState()) $address.getState(), #end
|
|
|
24 |
#if($address.getCountry()) $address.getCountry(), #end
|
|
|
25 |
#if($address.getPin()) $address.getPin(), #end
|
|
|
26 |
</span><br/>
|
|
|
27 |
#if($address.getPin()) <span>Phone : $address.getPhone()</span><br/><br/><br/> #end
|
|
|
28 |
#end
|
|
|
29 |
|
|
|
30 |
<span>Other Addresses : </span>
|
|
|
31 |
#foreach($address in $action.getUserAddresses())
|
|
|
32 |
#if($address.getId() != $action.getUser().getDefaultAddressId())
|
|
|
33 |
#if($address.getName()) <span>$address.getName()</span><br/> #end
|
|
|
34 |
<span>
|
|
|
35 |
#if($address.getLine1()) $address.getLine1(), #end
|
|
|
36 |
#if($address.getLine2()) $address.getLine2(), #end
|
|
|
37 |
#if($address.getLandmark()) $address.getLandmark(), #end
|
|
|
38 |
#if($address.getCity()) $address.getCity(), #end
|
|
|
39 |
#if($address.getState()) $address.getState(), #end
|
|
|
40 |
#if($address.getCountry()) $address.getCountry(), #end
|
|
|
41 |
#if($address.getPin()) $address.getPin(), #end
|
|
|
42 |
</span><br/>
|
|
|
43 |
#if($address.getPin()) <span>Phone : $address.getPhone()</span><br/><br/><br/> #end
|
|
|
44 |
#end
|
|
|
45 |
#end
|
|
|
46 |
|