Update form_builder.rst

Update import statement to include all classes used in the example
This commit is contained in:
John Franey 2015-02-12 12:22:44 -05:00 committed by Matt Westcott
parent 9956a546b4
commit 42cb5bdd2b

View file

@ -23,7 +23,11 @@ Within the models.py of one of your apps, create a model that extends wagtailfor
.. code:: python
from modelcluster.fields import ParentalKey
from wagtail.wagtailadmin.edit_handlers import (FieldPanel, InlinePanel,
MultiFieldPanel)
from wagtail.wagtailcore.fields import RichTextField
from wagtail.wagtailforms.models import AbstractEmailForm, AbstractFormField
class FormField(AbstractFormField):