Django CMS 插件开发:__init__() 得到了意外的关键字参数 'instance'

Django CMS Plugin Development: __init__() got an unexpected keyword argument 'instance'

我正在创建 Django CMS 插件。到目前为止,我已经创建了一个表单、模型和插件文件。我想保存 SETTINGS 信息,但是当我去保存它时,它给出了如上所述的错误。以下是详细信息。

cms_plugins.py

from cms.plugin_base import CMSPluginBase
from cms.plugin_pool import plugin_pool
from cms.models import CMSPlugin

from src.survey.forms import SurveyForm
from . import models


class SurveyPluginPublisher(CMSPluginBase):
    """Show Polls entered by Admin."""

    cache = False
    form = SurveyForm
    model = models.SurveyPluginModel  # Must add to show stuff.
    module = "Survey"
    name = "Awesome Survey v1.0"
    render_template = 'survey/_hello.html'


plugin_pool.register_plugin(SurveyPluginPublisher)

forms.py

from django import forms
from src.survey.models import Survey

models.py

class SurveyForm(forms.Form):
    # all_surveys = Survey.objects.only('name')
    # surveys = forms.ModelChoiceField(queryset=all_surveys)
    headline = forms.CharField(max_length=255, help_text='Enter Headline')
    description = forms.CharField(widget=forms.Textarea(attrs={'rows': 5, 'cols': 100}),help_text='Enter Description')

models.py

class SurveyPluginModel(CMSPlugin):
    name = models.CharField("Survey Name", max_length=255, default='Survey Name',
                            help_text='Enter Survey Name')
    description = models.CharField("Survey Description", max_length=500, blank=True, help_text='Write Description here')

    def __str__(self):
        return "Returning some Survey Text"

SurveyForm 应该是 ModelForm

的子类
class SurveyForm(forms.ModelForm):

    class Meta:
        model = SurveyPluginModel