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

时间:2017-02-13 12:11:15

标签: django plugins django-cms

我正在创建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"

1 个答案:

答案 0 :(得分:3)

SurveyForm应该是ModelForm

的子类
class SurveyForm(forms.ModelForm):

    class Meta:
        model = SurveyPluginModel