{% load email_filters %} {% load base_filters %}

{% 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 }} {% if for_admin %}{% trans "(Admin Copy)" %}{% endif %}

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

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