diff --git a/bp/calendar_entry/routes.py b/bp/calendar_entry/routes.py index cfb8027..8aeda90 100644 --- a/bp/calendar_entry/routes.py +++ b/bp/calendar_entry/routes.py @@ -550,8 +550,8 @@ def register(): await g.s.flush() - # Return updated entry view - html = await render_template("_types/entry/index.html") + # Return just the tickets fragment (targeted by hx-target="#entry-tickets-...") + html = await render_template("_types/entry/_tickets.html") return await make_response(html, 200) @bp.get("/posts/search/")