Convert account, orders, and federation sexp_components.py to pure sexp() calls
Eliminates all f-string HTML from the remaining three services, completing the migration of all sexp_components.py files to the s-expression rendering system. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -69,36 +69,56 @@ def _orders_header_html(ctx: dict, list_url: str) -> str:
|
||||
# Orders list rendering
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def _status_pill_cls(status: str) -> str:
|
||||
"""Return Tailwind classes for order status pill."""
|
||||
sl = status.lower()
|
||||
if sl == "paid":
|
||||
return "border-emerald-300 bg-emerald-50 text-emerald-700"
|
||||
if sl in ("failed", "cancelled"):
|
||||
return "border-rose-300 bg-rose-50 text-rose-700"
|
||||
return "border-stone-300 bg-stone-50 text-stone-700"
|
||||
|
||||
|
||||
def _order_row_html(order: Any, detail_url: str) -> str:
|
||||
"""Render a single order as desktop table row + mobile card."""
|
||||
status = order.status or "pending"
|
||||
sl = status.lower()
|
||||
pill = (
|
||||
"border-emerald-300 bg-emerald-50 text-emerald-700" if sl == "paid"
|
||||
else "border-rose-300 bg-rose-50 text-rose-700" if sl in ("failed", "cancelled")
|
||||
else "border-stone-300 bg-stone-50 text-stone-700"
|
||||
)
|
||||
pill = _status_pill_cls(status)
|
||||
created = order.created_at.strftime("%-d %b %Y, %H:%M") if order.created_at else "\u2014"
|
||||
total = f"{order.currency or 'GBP'} {order.total_amount or 0:.2f}"
|
||||
|
||||
return (
|
||||
# Desktop row
|
||||
f'<tr class="hidden sm:table-row border-t border-stone-100 hover:bg-stone-50/60">'
|
||||
f'<td class="px-3 py-2 align-top"><span class="font-mono text-[11px] sm:text-xs">#{order.id}</span></td>'
|
||||
f'<td class="px-3 py-2 align-top text-stone-700 text-xs sm:text-sm">{created}</td>'
|
||||
f'<td class="px-3 py-2 align-top text-stone-700 text-xs sm:text-sm">{order.description or ""}</td>'
|
||||
f'<td class="px-3 py-2 align-top text-stone-700 text-xs sm:text-sm">{total}</td>'
|
||||
f'<td class="px-3 py-2 align-top"><span class="inline-flex items-center rounded-full border px-2 py-0.5 text-[11px] sm:text-xs {pill}">{status}</span></td>'
|
||||
f'<td class="px-3 py-0.5 align-top text-right"><a href="{detail_url}" class="inline-flex items-center px-3 py-1.5 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition">View</a></td></tr>'
|
||||
# Mobile row
|
||||
f'<tr class="sm:hidden border-t border-stone-100"><td colspan="5" class="px-3 py-3"><div class="flex flex-col gap-2 text-xs">'
|
||||
f'<div class="flex items-center justify-between gap-2"><span class="font-mono text-[11px] text-stone-700">#{order.id}</span>'
|
||||
f'<span class="inline-flex items-center rounded-full border px-2 py-0.5 text-[11px] {pill}">{status}</span></div>'
|
||||
f'<div class="text-[11px] text-stone-500 break-words">{created}</div>'
|
||||
f'<div class="flex items-center justify-between gap-2"><div class="font-medium text-stone-800">{total}</div>'
|
||||
f'<a href="{detail_url}" class="inline-flex items-center px-2 py-1 text-[11px] rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition shrink-0">View</a></div></div></td></tr>'
|
||||
desktop = sexp(
|
||||
'(tr :class "hidden sm:table-row border-t border-stone-100 hover:bg-stone-50/60"'
|
||||
' (td :class "px-3 py-2 align-top" (span :class "font-mono text-[11px] sm:text-xs" (raw! oid)))'
|
||||
' (td :class "px-3 py-2 align-top text-stone-700 text-xs sm:text-sm" (raw! created))'
|
||||
' (td :class "px-3 py-2 align-top text-stone-700 text-xs sm:text-sm" (raw! desc))'
|
||||
' (td :class "px-3 py-2 align-top text-stone-700 text-xs sm:text-sm" (raw! total))'
|
||||
' (td :class "px-3 py-2 align-top" (span :class pill (raw! status)))'
|
||||
' (td :class "px-3 py-0.5 align-top text-right"'
|
||||
' (a :href url :class "inline-flex items-center px-3 py-1.5 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition" "View")))',
|
||||
oid=f"#{order.id}", created=created,
|
||||
desc=order.description or "", total=total,
|
||||
pill=f"inline-flex items-center rounded-full border px-2 py-0.5 text-[11px] sm:text-xs {pill}",
|
||||
status=status, url=detail_url,
|
||||
)
|
||||
|
||||
mobile = sexp(
|
||||
'(tr :class "sm:hidden border-t border-stone-100"'
|
||||
' (td :colspan "5" :class "px-3 py-3"'
|
||||
' (div :class "flex flex-col gap-2 text-xs"'
|
||||
' (div :class "flex items-center justify-between gap-2"'
|
||||
' (span :class "font-mono text-[11px] text-stone-700" (raw! oid))'
|
||||
' (span :class pill (raw! status)))'
|
||||
' (div :class "text-[11px] text-stone-500 break-words" (raw! created))'
|
||||
' (div :class "flex items-center justify-between gap-2"'
|
||||
' (div :class "font-medium text-stone-800" (raw! total))'
|
||||
' (a :href url :class "inline-flex items-center px-2 py-1 text-[11px] rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition shrink-0" "View")))))',
|
||||
oid=f"#{order.id}", created=created, total=total,
|
||||
pill=f"inline-flex items-center rounded-full border px-2 py-0.5 text-[11px] {pill}",
|
||||
status=status, url=detail_url,
|
||||
)
|
||||
|
||||
return desktop + mobile
|
||||
|
||||
|
||||
def _orders_rows_html(orders: list, page: int, total_pages: int,
|
||||
url_for_fn: Any, qs_fn: Any) -> str:
|
||||
@@ -118,7 +138,9 @@ def _orders_rows_html(orders: list, page: int, total_pages: int,
|
||||
u=next_url, p=page, **{"total-pages": total_pages},
|
||||
))
|
||||
else:
|
||||
parts.append('<tr><td colspan="5" class="px-3 py-4 text-center text-xs text-stone-400">End of results</td></tr>')
|
||||
parts.append(sexp(
|
||||
'(tr (td :colspan "5" :class "px-3 py-4 text-center text-xs text-stone-400" "End of results"))',
|
||||
))
|
||||
|
||||
return "".join(parts)
|
||||
|
||||
@@ -126,33 +148,35 @@ def _orders_rows_html(orders: list, page: int, total_pages: int,
|
||||
def _orders_main_panel_html(orders: list, rows_html: str) -> str:
|
||||
"""Main panel with table or empty state."""
|
||||
if not orders:
|
||||
return (
|
||||
'<div class="max-w-full px-3 py-3 space-y-3">'
|
||||
'<div class="rounded-2xl border border-dashed border-stone-300 bg-white/80 p-4 sm:p-6 text-sm text-stone-700">'
|
||||
'No orders yet.</div></div>'
|
||||
return sexp(
|
||||
'(div :class "max-w-full px-3 py-3 space-y-3"'
|
||||
' (div :class "rounded-2xl border border-dashed border-stone-300 bg-white/80 p-4 sm:p-6 text-sm text-stone-700"'
|
||||
' "No orders yet."))',
|
||||
)
|
||||
return (
|
||||
'<div class="max-w-full px-3 py-3 space-y-3">'
|
||||
'<div class="overflow-x-auto rounded-2xl border border-stone-200 bg-white/80">'
|
||||
'<table class="min-w-full text-xs sm:text-sm">'
|
||||
'<thead class="bg-stone-50 border-b border-stone-200 text-stone-600"><tr>'
|
||||
'<th class="px-3 py-2 text-left font-medium">Order</th>'
|
||||
'<th class="px-3 py-2 text-left font-medium">Created</th>'
|
||||
'<th class="px-3 py-2 text-left font-medium">Description</th>'
|
||||
'<th class="px-3 py-2 text-left font-medium">Total</th>'
|
||||
'<th class="px-3 py-2 text-left font-medium">Status</th>'
|
||||
'<th class="px-3 py-2 text-left font-medium"></th>'
|
||||
f'</tr></thead><tbody>{rows_html}</tbody></table></div></div>'
|
||||
return sexp(
|
||||
'(div :class "max-w-full px-3 py-3 space-y-3"'
|
||||
' (div :class "overflow-x-auto rounded-2xl border border-stone-200 bg-white/80"'
|
||||
' (table :class "min-w-full text-xs sm:text-sm"'
|
||||
' (thead :class "bg-stone-50 border-b border-stone-200 text-stone-600"'
|
||||
' (tr'
|
||||
' (th :class "px-3 py-2 text-left font-medium" "Order")'
|
||||
' (th :class "px-3 py-2 text-left font-medium" "Created")'
|
||||
' (th :class "px-3 py-2 text-left font-medium" "Description")'
|
||||
' (th :class "px-3 py-2 text-left font-medium" "Total")'
|
||||
' (th :class "px-3 py-2 text-left font-medium" "Status")'
|
||||
' (th :class "px-3 py-2 text-left font-medium" "")))'
|
||||
' (tbody (raw! rows)))))',
|
||||
rows=rows_html,
|
||||
)
|
||||
|
||||
|
||||
def _orders_summary_html(ctx: dict) -> str:
|
||||
"""Filter section for orders list."""
|
||||
return (
|
||||
'<header class="mb-6 sm:mb-8 flex flex-col sm:flex-row sm:items-center justify-between gap-3 sm:gap-4">'
|
||||
'<div class="space-y-1"><p class="text-xs sm:text-sm text-stone-600">Recent orders placed via the checkout.</p></div>'
|
||||
f'<div class="md:hidden">{search_mobile_html(ctx)}</div>'
|
||||
'</header>'
|
||||
return sexp(
|
||||
'(header :class "mb-6 sm:mb-8 flex flex-col sm:flex-row sm:items-center justify-between gap-3 sm:gap-4"'
|
||||
' (div :class "space-y-1" (p :class "text-xs sm:text-sm text-stone-600" "Recent orders placed via the checkout."))'
|
||||
' (div :class "md:hidden" (raw! sm)))',
|
||||
sm=search_mobile_html(ctx),
|
||||
)
|
||||
|
||||
|
||||
@@ -234,26 +258,36 @@ def _order_items_html(order: Any) -> str:
|
||||
items = []
|
||||
for item in order.items:
|
||||
prod_url = market_product_url(item.product_slug)
|
||||
img = (
|
||||
f'<img src="{item.product_image}" alt="{item.product_title or "Product image"}"'
|
||||
f' class="w-full h-full object-contain object-center" loading="lazy" decoding="async">'
|
||||
if item.product_image else
|
||||
'<div class="w-full h-full flex items-center justify-center text-[9px] text-stone-400">No image</div>'
|
||||
)
|
||||
items.append(
|
||||
f'<li><a class="w-full py-2 flex gap-3" href="{prod_url}">'
|
||||
f'<div class="w-12 h-12 sm:w-14 sm:h-14 rounded-md bg-stone-100 flex-shrink-0 overflow-hidden">{img}</div>'
|
||||
f'<div class="flex-1 flex justify-between gap-3">'
|
||||
f'<div><p class="font-medium">{item.product_title or "Unknown product"}</p>'
|
||||
f'<p class="text-[11px] text-stone-500">Product ID: {item.product_id}</p></div>'
|
||||
f'<div class="text-right whitespace-nowrap"><p>Qty: {item.quantity}</p>'
|
||||
f'<p>{item.currency or order.currency or "GBP"} {item.unit_price or 0:.2f}</p>'
|
||||
f'</div></div></a></li>'
|
||||
)
|
||||
return (
|
||||
'<div class="rounded-2xl border border-stone-200 bg-white/80 p-4 sm:p-6">'
|
||||
'<h2 class="text-sm sm:text-base font-semibold mb-3">Items</h2>'
|
||||
f'<ul class="divide-y divide-stone-100 text-xs sm:text-sm">{"".join(items)}</ul></div>'
|
||||
if item.product_image:
|
||||
img = sexp(
|
||||
'(img :src src :alt alt :class "w-full h-full object-contain object-center" :loading "lazy" :decoding "async")',
|
||||
src=item.product_image, alt=item.product_title or "Product image",
|
||||
)
|
||||
else:
|
||||
img = sexp('(div :class "w-full h-full flex items-center justify-center text-[9px] text-stone-400" "No image")')
|
||||
|
||||
items.append(sexp(
|
||||
'(li (a :class "w-full py-2 flex gap-3" :href href'
|
||||
' (div :class "w-12 h-12 sm:w-14 sm:h-14 rounded-md bg-stone-100 flex-shrink-0 overflow-hidden" (raw! img))'
|
||||
' (div :class "flex-1 flex justify-between gap-3"'
|
||||
' (div'
|
||||
' (p :class "font-medium" (raw! title))'
|
||||
' (p :class "text-[11px] text-stone-500" "Product ID: " (raw! pid)))'
|
||||
' (div :class "text-right whitespace-nowrap"'
|
||||
' (p "Qty: " (raw! qty))'
|
||||
' (p (raw! price))))))',
|
||||
href=prod_url, img=img,
|
||||
title=item.product_title or "Unknown product",
|
||||
pid=str(item.product_id),
|
||||
qty=str(item.quantity),
|
||||
price=f"{item.currency or order.currency or 'GBP'} {item.unit_price or 0:.2f}",
|
||||
))
|
||||
|
||||
return sexp(
|
||||
'(div :class "rounded-2xl border border-stone-200 bg-white/80 p-4 sm:p-6"'
|
||||
' (h2 :class "text-sm sm:text-base font-semibold mb-3" "Items")'
|
||||
' (ul :class "divide-y divide-stone-100 text-xs sm:text-sm" (raw! items)))',
|
||||
items="".join(items),
|
||||
)
|
||||
|
||||
|
||||
@@ -273,18 +307,25 @@ def _calendar_items_html(calendar_entries: list | None) -> str:
|
||||
ds = e.start_at.strftime("%-d %b %Y, %H:%M") if e.start_at else ""
|
||||
if e.end_at:
|
||||
ds += f" \u2013 {e.end_at.strftime('%-d %b %Y, %H:%M')}"
|
||||
items.append(
|
||||
f'<li class="px-4 py-3 flex items-start justify-between text-sm">'
|
||||
f'<div><div class="font-medium flex items-center gap-2">{e.name}'
|
||||
f'<span class="inline-flex items-center rounded-full px-2 py-0.5 text-[11px] font-medium {pill}">'
|
||||
f'{st.capitalize()}</span></div>'
|
||||
f'<div class="text-xs text-stone-500">{ds}</div></div>'
|
||||
f'<div class="ml-4 font-medium">\u00a3{e.cost or 0:.2f}</div></li>'
|
||||
)
|
||||
return (
|
||||
'<section class="mt-6 space-y-3">'
|
||||
'<h2 class="text-base sm:text-lg font-semibold">Calendar bookings in this order</h2>'
|
||||
f'<ul class="divide-y divide-stone-200 rounded-2xl border border-stone-200 bg-white/80">{"".join(items)}</ul></section>'
|
||||
items.append(sexp(
|
||||
'(li :class "px-4 py-3 flex items-start justify-between text-sm"'
|
||||
' (div'
|
||||
' (div :class "font-medium flex items-center gap-2"'
|
||||
' (raw! name)'
|
||||
' (span :class pill (raw! state)))'
|
||||
' (div :class "text-xs text-stone-500" (raw! ds)))'
|
||||
' (div :class "ml-4 font-medium" (raw! cost)))',
|
||||
name=e.name,
|
||||
pill=f"inline-flex items-center rounded-full px-2 py-0.5 text-[11px] font-medium {pill}",
|
||||
state=st.capitalize(), ds=ds,
|
||||
cost=f"\u00a3{e.cost or 0:.2f}",
|
||||
))
|
||||
|
||||
return sexp(
|
||||
'(section :class "mt-6 space-y-3"'
|
||||
' (h2 :class "text-base sm:text-lg font-semibold" "Calendar bookings in this order")'
|
||||
' (ul :class "divide-y divide-stone-200 rounded-2xl border border-stone-200 bg-white/80" (raw! items)))',
|
||||
items="".join(items),
|
||||
)
|
||||
|
||||
|
||||
@@ -297,7 +338,11 @@ def _order_main_html(order: Any, calendar_entries: list | None) -> str:
|
||||
d=order.description, s=order.status, c=order.currency,
|
||||
ta=f"{order.total_amount:.2f}" if order.total_amount else None,
|
||||
)
|
||||
return f'<div class="max-w-full px-3 py-3 space-y-4">{summary}{_order_items_html(order)}{_calendar_items_html(calendar_entries)}</div>'
|
||||
return sexp(
|
||||
'(div :class "max-w-full px-3 py-3 space-y-4" (raw! summary) (raw! items) (raw! cal))',
|
||||
summary=summary, items=_order_items_html(order),
|
||||
cal=_calendar_items_html(calendar_entries),
|
||||
)
|
||||
|
||||
|
||||
def _order_filter_html(order: Any, list_url: str, recheck_url: str,
|
||||
@@ -305,20 +350,31 @@ def _order_filter_html(order: Any, list_url: str, recheck_url: str,
|
||||
"""Filter section for single order detail."""
|
||||
created = order.created_at.strftime("%-d %b %Y, %H:%M") if order.created_at else "\u2014"
|
||||
status = order.status or "pending"
|
||||
pay = (
|
||||
f'<a href="{pay_url}" class="inline-flex items-center px-3 py-2 text-xs sm:text-sm '
|
||||
f'rounded-full border border-emerald-600 bg-emerald-600 text-white hover:bg-emerald-700 transition">'
|
||||
f'<i class="fa fa-credit-card mr-2" aria-hidden="true"></i>Open payment page</a>'
|
||||
) if status != "paid" else ""
|
||||
|
||||
return (
|
||||
'<header class="mb-6 sm:mb-8 flex flex-col sm:flex-row sm:items-center justify-between gap-3 sm:gap-4">'
|
||||
f'<div class="space-y-1"><p class="text-xs sm:text-sm text-stone-600">Placed {created} · Status: {status}</p></div>'
|
||||
'<div class="flex w-full sm:w-auto justify-start sm:justify-end gap-2">'
|
||||
f'<a href="{list_url}" class="inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition"><i class="fa-solid fa-list mr-2" aria-hidden="true"></i>All orders</a>'
|
||||
f'<form method="post" action="{recheck_url}" class="inline"><input type="hidden" name="csrf_token" value="{csrf_token}">'
|
||||
f'<button type="submit" class="inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition"><i class="fa-solid fa-rotate mr-2" aria-hidden="true"></i>Re-check status</button></form>'
|
||||
f'{pay}</div></header>'
|
||||
pay_html = ""
|
||||
if status != "paid":
|
||||
pay_html = sexp(
|
||||
'(a :href url :class "inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-emerald-600 bg-emerald-600 text-white hover:bg-emerald-700 transition"'
|
||||
' (i :class "fa fa-credit-card mr-2" :aria-hidden "true") "Open payment page")',
|
||||
url=pay_url,
|
||||
)
|
||||
|
||||
return sexp(
|
||||
'(header :class "mb-6 sm:mb-8 flex flex-col sm:flex-row sm:items-center justify-between gap-3 sm:gap-4"'
|
||||
' (div :class "space-y-1"'
|
||||
' (p :class "text-xs sm:text-sm text-stone-600" "Placed " (raw! created) " \u00b7 Status: " (raw! status)))'
|
||||
' (div :class "flex w-full sm:w-auto justify-start sm:justify-end gap-2"'
|
||||
' (a :href list-url :class "inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition"'
|
||||
' (i :class "fa-solid fa-list mr-2" :aria-hidden "true") "All orders")'
|
||||
' (form :method "post" :action recheck-url :class "inline"'
|
||||
' (input :type "hidden" :name "csrf_token" :value csrf)'
|
||||
' (button :type "submit"'
|
||||
' :class "inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition"'
|
||||
' (i :class "fa-solid fa-rotate mr-2" :aria-hidden "true") "Re-check status"))'
|
||||
' (raw! pay)))',
|
||||
created=created, status=status,
|
||||
**{"list-url": list_url, "recheck-url": recheck_url},
|
||||
csrf=csrf_token, pay=pay_html,
|
||||
)
|
||||
|
||||
|
||||
@@ -389,13 +445,10 @@ async def render_order_oob(ctx: dict, order: Any,
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def _checkout_error_filter_html() -> str:
|
||||
return (
|
||||
'<header class="mb-6 sm:mb-8">'
|
||||
'<h1 class="text-xl sm:text-2xl md:text-3xl font-semibold tracking-tight">'
|
||||
'Checkout error</h1>'
|
||||
'<p class="text-xs sm:text-sm text-stone-600">'
|
||||
'We tried to start your payment with SumUp but hit a problem.</p>'
|
||||
'</header>'
|
||||
return sexp(
|
||||
'(header :class "mb-6 sm:mb-8"'
|
||||
' (h1 :class "text-xl sm:text-2xl md:text-3xl font-semibold tracking-tight" "Checkout error")'
|
||||
' (p :class "text-xs sm:text-sm text-stone-600" "We tried to start your payment with SumUp but hit a problem."))',
|
||||
)
|
||||
|
||||
|
||||
@@ -403,25 +456,22 @@ def _checkout_error_content_html(error: str | None, order: Any | None) -> str:
|
||||
err_msg = error or "Unexpected error while creating the hosted checkout session."
|
||||
order_html = ""
|
||||
if order:
|
||||
order_html = (
|
||||
f'<p class="text-xs text-rose-800/80">'
|
||||
f'Order ID: <span class="font-mono">#{order.id}</span></p>'
|
||||
order_html = sexp(
|
||||
'(p :class "text-xs text-rose-800/80" "Order ID: " (span :class "font-mono" (raw! oid)))',
|
||||
oid=f"#{order.id}",
|
||||
)
|
||||
back_url = cart_url("/")
|
||||
return (
|
||||
'<div class="max-w-full px-3 py-3 space-y-4">'
|
||||
'<div class="rounded-2xl border border-rose-200 bg-rose-50/80 p-4 sm:p-6 text-sm text-rose-900 space-y-2">'
|
||||
f'<p class="font-medium">Something went wrong.</p>'
|
||||
f'<p>{err_msg}</p>'
|
||||
f'{order_html}'
|
||||
'</div>'
|
||||
'<div>'
|
||||
f'<a href="{back_url}"'
|
||||
' class="inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition">'
|
||||
'<i class="fa fa-shopping-cart mr-2" aria-hidden="true"></i>'
|
||||
'Back to cart</a>'
|
||||
'</div>'
|
||||
'</div>'
|
||||
return sexp(
|
||||
'(div :class "max-w-full px-3 py-3 space-y-4"'
|
||||
' (div :class "rounded-2xl border border-rose-200 bg-rose-50/80 p-4 sm:p-6 text-sm text-rose-900 space-y-2"'
|
||||
' (p :class "font-medium" "Something went wrong.")'
|
||||
' (p (raw! msg))'
|
||||
' (raw! order-html))'
|
||||
' (div'
|
||||
' (a :href back-url'
|
||||
' :class "inline-flex items-center px-3 py-2 text-xs sm:text-sm rounded-full border border-stone-300 bg-white hover:bg-stone-50 transition"'
|
||||
' (i :class "fa fa-shopping-cart mr-2" :aria-hidden "true") "Back to cart")))',
|
||||
msg=err_msg, **{"order-html": order_html, "back-url": back_url},
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user