{% extends "base.html" %} {% block title %}Session {{ session.id }} — deliveryday-companion{% endblock %} {% block nav_extra %} Preview PDF {% endblock %} {% block content %}

Session

VIN   {{ session.vin or "—" }}
Location   {{ session.location or "—" }}
Started   {{ session.created_at.strftime("%Y-%m-%d %H:%M") }} UTC
Status   {% if session.signed_at %} signed at {{ session.signed_at.strftime("%H:%M") }} UTC {% else %} in progress {% endif %}
{{ completed }} / {{ total }} steps recorded
{% for cat in categories %} {% set rows = by_category[cat] %} {% if rows %}

{{ cat }} ({{ rows | length }} steps)

{% for step, result in rows %}
{% if result %} {{ result.status }} {% else %} pending {% endif %} {{ step.title }} {% if step.photo_required %} photo {% endif %}
{{ step.description }}
{% if result and result.note %}
Note: {{ result.note }}
{% endif %} {% if result and result.photo_path %}
Photo on file (embedded in PDF report).
{% endif %}
{% endfor %}
{% endif %} {% endfor %}

Finalize

Once every FAIL item has been captured on a Due Bill and you're ready to accept delivery, sign the session below. The signed PDF report is your record — you can email it to yourself and to your Tesla delivery specialist.

{% endblock %}