{% extends "pbp_store/admin_base.html" %} {% load url from future %} {% load catalog_filters %} {% block body %}
{% for order_item in order_items %}

Subscription Type: {% if order_item.product.child.renewal %} Renewal{% elif order_item.is_gift %} Gift{% else %} New{% endif %}

Order: #{{order.pk}}
{% if not order_item.is_gift %} {% else %} {% endif %}
Paper:{{order_item.product.title}}
Duration:{{order_item.product.child.duration}}
Shipping Method:{{order_item.product.child.shipping_method}}
Email:{{order.user.email}}
{% if not order_item.is_gift %}Shipping Address:{% else %}Gift From:{% endif %}
Name:{{order.user.first_name}} {{order.user.last_name}}
Company:{{order.user.my_profile.company}}
address1:{{order.user.my_profile.address1}}
address2:{{order.user.my_profile.address2}}
City:{{order.user.my_profile.city}}
State:{{order.user.my_profile.region}}
Country:{{order.user.my_profile.country}}
Other:{{order.user.my_profile.country_other}}
Zip:{{order.user.my_profile.postal_code}}{% if order.user.my_profile.plus_four %}-{{order.user.my_profile.plus_four}}{% endif %}
Phone:{{order.user.my_profile.phone}}
Secondary Shipping Address:
Date Effective: {% if order.user.my_profile.secondary_address.address_from %}From: {{ order.user.my_profile.secondary_address.address_from }}{% endif %} {% if order.user.my_profile.secondary_address.address_to %}To: {{ order.user.my_profile.secondary_address.address_to }}{% endif %}
Name:{{order.user.my_profile.secondary_address.first_name}} {{order.user.my_profile.secondary_address.last_name}}
Company:{{order.user.my_profile.secondary_address.company}}
address1:{{order.user.my_profile.secondary_address.address1}}
address2:{{order.user.my_profile.secondary_address.address2}}
City:{{order.user.my_profile.secondary_address.city}}
State:{{order.user.my_profile.secondary_address.region}}
Country:{{order.user.my_profile.secondary_address.country}}
Other:{{order.user.my_profile.secondary_address.country_other}}
Zip:{{order.user.my_profile.secondary_address.postal_code}}{% if order.user.my_profile.secondary_address.plus_four %}-{{order.user.my_profile.secondary_address.plus_four}}{% endif %}
Phone:{{order.user.my_profile.secondary_address.phone}}
Gift To:
Name:{{order_item.gift_detail.first_name}} {{order_item.gift_detail.last_name}}
Company:{{order_item.gift_detail.company}}
address1:{{order_item.gift_detail.address1}}
address2:{{order_item.gift_detail.address2}}
City:{{order_item.gift_detail.city}}
State:{{order_item.gift_detail.region}}
Country:{{order_item.gift_detail.country}}
Other:{{order_item.gift_detail.country_other}}
Zip:{{order_item.gift_detail.postal_code}}{% if order_item.gift_detail.plus_four %}-{{order_item.gift_detail.plus_four}}{% endif %}
Phone:{{order_item.gift_detail.phone}}
Email:{{order_item.gift_detail.email}}
Gift Detail:
Next Renewal:{% if order_item.gift_detail.bill_on_renewal == "PURCHASER"%}Bill Purchaser{% else %}Bill Recipient{% endif %}
Gift Card:{% if not order_item.gift_detail.gift_card_delivery %}No gift card{% elif order_item.gift_detail.gift_card_delivery == "PURCHASER" %}Send gift card to purchaser{% else %}Send gift cards to sender{% endif %}
Gift Card Text:{{order_item.gift_detail.message}}
{% endfor %} {% endblock body %}