地址管理

新增收货地址

我的地址

{% if addresses %} {% for a in addresses %}
{{ a.receiver_name }} {% if a.is_default %} 默认地址 {% endif %}
电话:{{ a.receiver_phone }}
{{ a.province }} {{ a.city }} {{ a.district or '' }} {{ a.detail_address }}
邮编:{{ a.postal_code or '暂无' }}
{% if not a.is_default %}
{% endif %}
{% endfor %} {% else %}
你还没有收货地址,请先新增一个默认地址。
{% endif %}