diff --git a/doc/development/api/general.rst b/doc/development/api/general.rst index 3ea5dc29c..e8fd1fc31 100644 --- a/doc/development/api/general.rst +++ b/doc/development/api/general.rst @@ -35,7 +35,7 @@ Frontend -------- .. automodule:: pretix.presale.signals - :members: html_head, html_footer, footer_link, global_footer_link, front_page_top, front_page_bottom, front_page_bottom_widget, fee_calculation_for_cart, contact_form_fields, question_form_fields, contact_form_fields_overrides, question_form_fields_overrides, checkout_confirm_messages, checkout_confirm_page_content, checkout_all_optional, html_page_header, render_seating_plan, checkout_flow_steps, position_info, position_info_top, item_description, global_html_head, global_html_footer, global_html_page_header + :members: html_head, html_footer, footer_link, global_footer_link, front_page_top, front_page_bottom, front_page_bottom_widget, fee_calculation_for_cart, contact_form_fields, question_form_fields, contact_form_fields_overrides, question_form_fields_overrides, checkout_confirm_messages, checkout_confirm_page_content, checkout_all_optional, html_page_header, render_seating_plan, checkout_flow_steps, position_info, position_info_top, item_description, global_html_head, global_html_footer, global_html_page_header, seatingframe_html_head .. automodule:: pretix.presale.signals diff --git a/src/pretix/base/migrations/0268_remove_subevent_items_remove_subevent_variations_and_more.py b/src/pretix/base/migrations/0268_remove_subevent_items_remove_subevent_variations_and_more.py index 3aaf43ac1..3c34dc215 100644 --- a/src/pretix/base/migrations/0268_remove_subevent_items_remove_subevent_variations_and_more.py +++ b/src/pretix/base/migrations/0268_remove_subevent_items_remove_subevent_variations_and_more.py @@ -1,6 +1,7 @@ # Generated by Django 4.2.8 on 2024-07-01 09:26 from django.db import migrations, models + import pretix.base.models.orders diff --git a/src/pretix/presale/signals.py b/src/pretix/presale/signals.py index db24b8b0d..c4387ae44 100644 --- a/src/pretix/presale/signals.py +++ b/src/pretix/presale/signals.py @@ -84,6 +84,7 @@ seatingframe_html_head = EventPluginSignal() """ Arguments: ``request`` +**Temporary workaround, might be removed again later.** This signal allows you to put code inside the HTML ```` tag of the seatingframe page in the frontend. You will get the request as the keyword argument ``request`` and are expected to return plain HTML.