{% extends "base.html" %} {% from '_upsell.html' import crown_badge, max_badge, beta_pill %} {% 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 name / hash #}
{# 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 #}
{% trans %}Page {{ page }} of {{ total_pages }}{% endtrans %}
{{ _("No orders found.") }}
{{ _("Try adjusting your filters or sync orders first.") }}