{% extends "base.html" %} {% block title %}Order: {{ customer.user.get_full_name|default:customer.user.username }} — {{ event.name }}{% endblock %} {% block content %}

{{ customer.user.get_full_name|default:customer.user.username }}

{{ event.name }} — {{ event.date }}

Invoice Back to Orders
Status: {% if order.status == "pending_payment" %} Pending Payment {% elif order.status == "paid" %} Paid {% elif order.status == "in_progress" %} In Progress {% elif order.status == "delivered" %} Delivered {% endif %}
{% csrf_token %}
Photographer Fee
{% csrf_token %}
Downloads
{% if order.is_paid %}
{% if print_photos %} Print Originals ({{ print_photos|length }}) {% endif %} {% if digital_photos or print_photos %} Digital Delivery ({{ digital_delivery_count }}) {% endif %}
{% else %}

Downloads available after payment is confirmed.

{% endif %}
{% if order.share_link %}
Share Link
{{ order.share_link.code }} {% if order.share_link.is_active %} Active {% else %} Deactivated {% endif %} Downloads: {{ order.share_link.download_count }}
{% if order.share_link.is_active %}
{% csrf_token %}
{% endif %}
{% endif %} {% load gallery_tags %} {% if print_photos %}

Print & Digital {{ print_photos|length }}

{% for photo in print_photos %}
{% if photo.thumbnail %} {% else %} {% endif %}
{{ photo.filename }} {{ print_sizes_by_photo|dict_get:photo.pk }}
{% endfor %}
{% endif %} {% if digital_photos %}

Digital Only {{ digital_photos|length }}

{% for photo in digital_photos %}
{% if photo.thumbnail %} {% else %} {% endif %}
{{ photo.filename }}
{% endfor %}
{% endif %} {% if rejected_count %}

{{ rejected_count }} photo{{ rejected_count|pluralize }} rejected.

{% endif %} {% endblock %}