Mailchimp Integration ===================== Implementations of the abstract `CoderedFormPage` can add their form submissions to a Mailchimp list. When this functionality is enabled, you can map form submission variables to merge variables and add form submissions to specific interest groups. Implementation ~~~~~~~~~~~~~~ By default, when you generate a website, you will get an implementation of `CoderedFormPage`. To get the functionality working, you need to do the following: - Implmenet the abstract `MailchimpSubscriberIntegration` class with a `ParentalKey` that points to your `FormPage` - Add an `integrations_panels` variable to `FormPage` that holds an `InlinePanel` for your implemented `MailchimpSubscriberIntegration` class Here is what the resulting code will look like in ``website/models.py``:: from modelcluster.fields import ParentalKey from coderedcms.models import CoderedFormPage, MailchimpSubscriberIntegration from wagtail.admin.edit_handlers import InlinePanel class FormPageMailchimpSubscriberIntegration(MailchimpSubscriberIntegration): page = ParentalKey('FormPage', related_name='mailchimp_subscriber_integrations', on_delete=models.CASCADE) class FormPage(CoderedFormPage): """ A page with an html