{% extends "base.html" %} {% block title %}Fulfilment — {{ order.ref }} — Jason Studio{% endblock %} {% block content %}
Back to Quotes & Orders

Fulfilment

{{ customer.user.get_full_name|default:customer.user.username }} — {{ event.name }} — Order {{ order.ref }}

Payment
{% if order.is_paid %}
Paid {% if order.paid_at %} on {{ order.paid_at|date:"N j, Y" }} {% endif %} View Receipt
{% else %} {% endif %}
Deliveries {% if order.is_paid %}
{% if drive_configured %}
{% csrf_token %}
Upload Selected {% endif %} New Delivery
{% endif %}
{% if deliveries.count > 0 %}
{% for d in deliveries %} {% endfor %}
Delivery # Method Items URL Date
{{ d.delivery_number }} {{ d.get_method_display }} {% for item in d.items.all %} {{ item.description }}{% if not forloop.last %},{% endif %} {% empty %} {% endfor %} {% if d.url %} {{ d.url|truncatechars:40 }} {% else %} {% endif %} {{ d.date_created|date:"N j, Y" }} {% if d.mailto_url %} {% endif %}
{% else %}
No deliveries recorded yet
{% endif %}
Photographer Downloads
All event photos
Zip of all {{ event.photo_count }} original photo{{ event.photo_count|pluralize }} from this event (not customer-specific)
Download All ({{ event.photo_count }})
{% 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 %} {% endblock %}