{% extends "base.html" %} {% block title %}Orders{% endblock %} {% block content %}
| Date | Order ID | Product | Amount |
|---|---|---|---|
| {{ o.order_date.strftime('%Y-%m-%d') if o.order_date else '--' }} | {# Order ID #}{{ o.id_order or o.provider_order_id }} | {# Product: icon + name #}
{% if o.product_type == 'business_care' %}
BC
{% elif o.pico_url %}
|
{# Customer hash (truncated) #}
{# Licence URL (customer website) + online status #}
{# Country #}
{# Type badge #}
{# Amount (green for income, red for payment) #}
{% if o.transaction_type == 'income' %} €{{ o.amount or '0' }} {% elif o.transaction_type == 'payment' %} €{{ o.amount or '0' }} {% else %} €{{ o.amount or '0' }} {% endif %} | {# Qty #}
Page {{ page }} of {{ total_pages }}
No orders found.
Try adjusting your filters or sync orders first.