chore: remove form fields from tutorial

This commit is contained in:
Konstantin 2024-10-06 17:20:59 +02:00
parent 8a63e639b1
commit ce02ef9741
2 changed files with 45 additions and 22 deletions

View file

@ -76,25 +76,25 @@ class FooterText(
class Meta(TranslatableMixin.Meta):
verbose_name_plural = "Footer Text"
class FormField(AbstractFormField):
page = ParentalKey('FormPage', on_delete=models.CASCADE, related_name='form_fields')
class FormPage(AbstractEmailForm):
intro = RichTextField(blank=True)
thank_you_text = RichTextField(blank=True)
content_panels = AbstractEmailForm.content_panels + [
FormSubmissionsPanel(),
FieldPanel('intro'),
InlinePanel('form_fields', label="Form fields"),
FieldPanel('thank_you_text'),
MultiFieldPanel([
FieldRowPanel([
FieldPanel('from_address'),
FieldPanel('to_address'),
]),
FieldPanel('subject'),
], "Email"),
]
#
# class FormField(AbstractFormField):
# page = ParentalKey('FormPage', on_delete=models.CASCADE, related_name='form_fields')
#
#
# class FormPage(AbstractEmailForm):
# intro = RichTextField(blank=True)
# thank_you_text = RichTextField(blank=True)
#
# content_panels = AbstractEmailForm.content_panels + [
# FormSubmissionsPanel(),
# FieldPanel('intro'),
# InlinePanel('form_fields', label="Form fields"),
# FieldPanel('thank_you_text'),
# MultiFieldPanel([
# FieldRowPanel([
# FieldPanel('from_address'),
# FieldPanel('to_address'),
# ]),
# FieldPanel('subject'),
# ], "Email"),
# ]