We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129278a commit 2fd9ddcCopy full SHA for 2fd9ddc
bakerydemo/base/models.py
@@ -12,6 +12,7 @@
12
PublishingPanel,
13
)
14
from wagtail.contrib.forms.models import AbstractEmailForm, AbstractFormField
15
+from wagtail.contrib.forms.panels import FormSubmissionsPanel
16
from wagtail.contrib.settings.models import (
17
BaseGenericSetting,
18
BaseSiteSetting,
@@ -463,6 +464,7 @@ class FormPage(AbstractEmailForm):
463
464
# Note how we include the FormField object via an InlinePanel using the
465
# related_name value
466
content_panels = AbstractEmailForm.content_panels + [
467
+ FormSubmissionsPanel(),
468
FieldPanel("image"),
469
FieldPanel("body"),
470
InlinePanel("form_fields", heading="Form fields", label="Field"),
0 commit comments