自动将动态值放入表格

时间:2019-03-08 17:56:13

标签: python django forms

我有一张预订用户课程的表格。我使用lesson.lesson_instrumentlesson.lesson_datetime_start显示课程的工具和日期。我希望我的表单使用lesson.lesson_instrumentlesson.lesson_datetime_start中的form.booked_instrumentform.booked_date的值,以便将信息保存在新的单独模型实例中。我想知道如何从中获取价值,而无需输入表单文本输入。

HTML

<div class="text-center">
    <div class="form-group">
        <div class="ins-left">
            <p>{{ lesson.lesson_instrument }} {{ form.booked_instrument }}</p>
        </div>
        <div class="date-right">
            <p>{{ lesson.lesson_datetime_start|date}} {{ form.booked_date }}</p>
        </div>
    </div>

    <br />
    <br />
    <div class="form-group">
        <label>Length</label>
        {{ form.booked_length }}
    </div>

    <br />

    <div class="form-group">
        <label>Time</label>
        {{ form.booked_time }}
    </div>

    <div class="bottom">
        <button type="submit" name="submit" class="btn blue_button">Book Now</button>
    </div>
</div>

forms.py

class BookedForm(forms.ModelForm):
    booked_instrument = forms.CharField(widget=forms.TextInput(attrs={'class' : 'form-control'}))
    booked_length = forms.ChoiceField(choices=length_list, widget=forms.Select(attrs={'class' : 'form-control', 'id' : 'length', 'required' : 'True'}))
    booked_date = forms.DateField(input_formats=['%Y-%m-%d'], widget=forms.DateInput(attrs={'class': 'form-control'}))
    booked_time = forms.ChoiceField(widget=forms.Select(attrs={'class' : 'form-control', 'id' : 'time', 'required' : 'True'}))

    class Meta:
        model = Booked
        fields = ('booked_instrument', 'booked_length', 'booked_date', 'booked_time')

1 个答案:

答案 0 :(得分:1)

您将使用ModelChoiceField而不是当前的ChoiceField。顾名思义,ModelChoiceField将特定模型与ChoiceField绑定在一起,从而为您提供所需的确切信息。

从本质上讲,就像Django的文档所示:

booked_instrument = forms.ModelChoiceField(queryset=Instruments.objects.query(lesson=current_lesson...)

其中current_lesson是当前课程的显示实例,或者您可以按其他条件进行过滤,或者仅呈现数据库上的所有乐器。

看看文档: ModelChoiceField