You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
998 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!-- $Id: user_address_list.htm 14216 2008-03-10 02:27:21Z testyang $ -->
{include file="pageheader.htm"}
<div class="list-div">
<table class="table table-bordered"> <tr>
<th>{$lang.consignee}</th>
<th>{$lang.address}</th>
<th>{$lang.link}</th>
<th>{$lang.other}</th>
</tr>
{foreach from=$address key=Key item=val}
<tr>
<td>{$val.consignee|escape}</td>
<td>{$val.country_name}&nbsp;&nbsp;{$val.province_name}&nbsp;&nbsp;{$val.city_name}&nbsp;&nbsp;{$val.district_name}<br />
{$val.address|escape}{if $val.zipcode}[{$val.zipcode|escape}]{/if}</td>
<td>{$lang.tel}{$val.tel}<br />{$lang.mobile}{$val.mobile}<br/>email: {$val.email}</td>
<td>{$lang.best_time}:{$val.best_time|escape}<br/>{$lang.sign_building}:{$val.sign_building|escape}</td>
</tr>
{foreachelse}
<tr><td class="no-records" colspan="4">{$lang.no_records}</td></tr>
{/foreach}
</table>
</div>
{include file="pagefooter.htm"}