- {/* Order Number & Status */}
-
-
#{order.number}
-
- {order.status || 'unknown'}
-
-
-
- {/* Customer */}
-
- {order.customer || __('Guest')}
-
-
- {/* Items Brief */}
- {order.items_brief && (
-
- {order.items_count} {order.items_count === 1 ? __('item') : __('items')} · {order.items_brief}
+
+ {/* Line 1: Date (small) */}
+
+ {formatRelativeOrDate(order.date_ts)}
+
+
- )}
- {/* Date & Total */}
-
-
- {formatRelativeOrDate(order.date_ts)}
-
-
- {formatMoney(order.total, {
- currency: order.currency || currencyConfig.currency,
- symbol: order.currency_symbol || currencyConfig.symbol,
- thousandSep: currencyConfig.thousand_sep,
- decimalSep: currencyConfig.decimal_sep,
- position: currencyConfig.position,
- decimals: currencyConfig.decimals,
- })}
-
-
+ {/* Content - 2 lines inline with icon */}
+
+ {/* Line 3: Customer */}
+
+ {order.customer || __('Guest')}
+
+
+ {/* Line 4: Items */}
+ {order.items_brief && (
+
+ {order.items_count} {order.items_count === 1 ? __('item') : __('items')} · {order.items_brief}
+
+ )}
+
+ {/* Line 5: Total & Status */}
+
+
+ {formatMoney(order.total, {
+ currency: order.currency || currencyConfig.currency,
+ symbol: order.currency_symbol || currencyConfig.symbol,
+ thousandSep: currencyConfig.thousand_sep,
+ decimalSep: currencyConfig.decimal_sep,
+ position: currencyConfig.position,
+ decimals: currencyConfig.decimals,
+ })}
+
+
+