改变django中的表单字段

时间:2016-06-16 16:41:22

标签: python django

我是Django的初学者。我只是失去了为什么这不会起作用。

我尝试使用optgroup及其选项初始化字段

在views.py中

class SystemDetailView(DetailView):
"""Detail view for Systems"""

form_class = system_form()
model = System
template_name = 'systems/system_detail.html'

def get_context_data(self, **kwargs):
    context = super(SystemDetailView, self).get_context_data(**kwargs)
    context.update({
        'system_update_form': self.form_class(instance=self.get_object()),
    })

    return context

def system_form(self):
    form= SystemForm
    form.fields['primary_purpose_business_use'].choices= list()
    for optgroup in BusinessSystemType.objects.all():
        form.fields['primary_purpose_business_use'].choices= form.fields['primary_purpose_business_use'].choices.append(
            optgroup.name, list(subtype.name for subtype in BusinessSystemType.objects.filter(parent= optgroup))
        )
    return SystemForm

在forms.py

class SystemForm(ModelForm):
"""Form to create and modify systems"""

# only show top-level UserTypes for application_user_type field
application_user_type = ModelChoiceField(
       queryset=UserType.objects.filter(parent__isnull=True), required=False,
       help_text="Type of user who interacts with the system")

lines_of_business = ModelMultipleChoiceField(
    widget=forms.widgets.CheckboxSelectMultiple(), queryset=LineOfBusiness.objects.all(),
    required=False, help_text="Identify lines of business this system touches"
)

customer_segments_served = ModelMultipleChoiceField(
    widget=forms.widgets.CheckboxSelectMultiple(), queryset=CustomerSegment.objects.all(),
    required=False, help_text="Customer segments this resource serves"
)

application_user_sub_type = ModelMultipleChoiceField(
    widget=forms.widgets.CheckboxSelectMultiple(), queryset=UserType.objects.filter(parent__name='Internal'),
    required=False, label="Internal user type"
)

primary_purpose_business_use = ModelChoiceField(
       queryset=BusinessSystemType.objects.filter(parent__isnull=True), required=False,
       help_text="primary business purpose")


class Meta:
    model = System
    fields = ['name', 'short_name', 'accountable_team', 'description', 'lines_of_business',
            'business_system_type', 'customer_segments_served',
            'application_user_type', 'other_application_user_type', 'application_user_sub_type',
            'intellectual_property', 'deployment_model',
            'business_criticality', 'service_criticality',
            'vendor', 'other_vendor', 'technology_type', 'other_technology_type',
            'associated_technologies', 'renewal_date',
            'installation_date', 'deprecation_date', 'purchase_price',
            'contract_signed_date', 'contract_end_date', 'parimary_purpose_business_use', 'documentation_url', 'notes', 'tags']

我得到了未解决的引用,其中form_class = system_form() 我究竟做错了什么?可能很多。但是你能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

form_class = system_form()

问题是, system_form 是一个实例方法。这意味着要调用它,你需要一个 SystemDetailView 的实例,而你在创建 SystemDetailView 时显然没有。

看起来你只需要一个返回一个类来分配给 form_class 属性的函数。要将方法转换为函数,只需将其移到类体外即可。您也不需要self作为函数参数。

(另外你的代码显然有一些缩进问题,但我相信你只是复制并粘贴错了。)