{% load email_filters %} {% load base_filters %} {% if for_admin %}

{% blocktrans with event.title as title and event.start_dt|date:"N j, Y \a\t f A" as start_dt %}{{ title }} on {{ start_dt }}{% endblocktrans %}

{% trans "Event Assets Purchased for event " %} {{ event.title }} {% trans "(Admin Copy)" %}

{% blocktrans with assets_purchase.amount|format_currency as priceflo %}Total Amount: {{ priceflo }}{% endblocktrans %}

{% if assets_purchase.is_paid %}
{% if not assets_purchase.is_free %}{% trans "Payment Received." %}{% else %}{% trans "Free Purchase." %}{% endif %} {% trans "View Invoice."%}
{{ assets_purchase.first_name }} {{ assets_purchase.last_name }} ({{ assets_purchase.email }})
{% trans "Pricing Type" %}: {{ assets_purchase.pricing.title }}
{% else %}
{% trans "Not Paid." %} {% trans "View Invoice."%}
{{ assets_purchase.first_name }} {{ assets_purchase.last_name }} ({{ assets_purchase.email }})
{% trans "Pricing Type" %}: {{ assets_purchase.pricing.title }}
{% endif %} {% else %} {# to user #} {% if assets_purchase.is_paid %}
{% trans "Successfully purchased event assets. Thank you!" %}
{% else %}
{% trans "Payment is required." %} {% trans "Complete the event assets purchase." %}
{% endif %}

{% blocktrans with event.title as title and event.start_dt|date:"N j, Y \a\t f A" as start_dt %}{{ title }} on {{ start_dt }}{% endblocktrans %}

{% trans "Event Assets Purchased for event " %} {{ event.title }}

{% blocktrans with assets_purchase.invoice.total|format_currency as priceflo %}Total Amount: {{ priceflo }}{% endblocktrans %}

{% trans "Download Invoice"%}
{% endif %}