Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 16s
Defpages are now declared with absolute paths in .sx files and auto-mounted directly on the Quart app, removing ~850 lines of blueprint mount_pages calls, before_request hooks, and g.* wrapper boilerplate. A new page = one defpage declaration, nothing else. Infrastructure: - async_eval awaits coroutine results from callable dispatch - auto_mount_pages() mounts all registered defpages on the app - g._defpage_ctx pattern passes helper data to layout context Migrated: sx, account, orders, federation, cart, market, events, blog Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
865 B
Plaintext
28 lines
865 B
Plaintext
;; Orders app — declarative page definitions
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
;; Orders list
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
(defpage orders-list
|
|
:path "/"
|
|
:auth :public
|
|
:layout (:orders
|
|
:list-url (orders-list-url))
|
|
:filter (orders-list-filter)
|
|
:aside (orders-list-aside)
|
|
:content (orders-list-content))
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
;; Order detail
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
(defpage order-detail
|
|
:path "/<int:order_id>/"
|
|
:auth :public
|
|
:layout (:order-detail
|
|
:list-url (order-list-url-from-detail order-id)
|
|
:detail-url (order-detail-url order-id))
|
|
:filter (order-detail-filter order-id)
|
|
:content (order-detail-content order-id))
|