Account nav links and page panels (tickets, bookings) now fetched as HTML fragments from events app instead of using widget registry. All three widget registration functions are now no-ops. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
220 B
Python
11 lines
220 B
Python
"""Cart-domain widgets.
|
|
|
|
Account nav link has been replaced by fragments
|
|
(cart app serves account-nav-item at /internal/fragments/).
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
|
|
def register_cart_widgets() -> None:
|
|
pass
|