0

フォーム.py :

class BetaUser(ModelForm):
    Industry = forms.ModelChoiceField(queryset = homepagelaunch_industries.objects.all(), initial=1)
        class Meta:
            model = BetaUsers
            fields = ['Industry']

model.py

class BetaUsers(models.Model):
    Industry = models.CharField(verbose_name="Industry",max_length=100)
    #Industry = forms.ModelChoiceField(verbose_name="Industry", queryset=Indus.objects.all())

class Industries(models.Model):
    IndustryChoice = models.CharField(max_length=60)

view.py

def BetaUserDisplayForm(request):
    BetaUserGatherForm = BetaUser(request.POST or None)
    if request.method == 'POST':
        if BetaUserGatherForm.is_valid():
            BetaUserIndustry = BetaUserGatherForm.cleaned_data['Industry']
            BetaUserGatherForm.save()
            try:
                return HttpResponseRedirect('/BetaUserThankYou/')
            except:
                raise ('Invalid request')
        else:
            BetaUserGatherForm = BetaUser()

    return render(request, 'apage.html', {
        'BetaUserGatherForm': BetaUserGatherForm
    })

モデルクラスIndustryのデータベース列からの値を入力しようとしているだけです: . 私は何を間違っていますか?誰か助けてくれませんか?IndustryChoiceIndustries

エラーが発生しています:

name 'homepagelaunch_industries' is not defined

ありがとう!

4

0 に答える 0