使用PK代替用户名的Choicefield的ModelForm

时间:2019-03-05 23:18:21

标签: python django django-forms django-class-based-views

我有一个 PostView

生成的表单
class HotelCreateView(LoginRequiredMixin, CreateView):
    model = Hotel
    fields = ['hotel', 'code', 'collaborateurs', 'planning' 'payday']

    def form_valid(self, form):
        form.instance.manager_hotel = self.request.user
        return super().form_valid(form)

模型 collaborateurs 是呈现用户名的选择字段。

我希望该字段呈现PK,所以我尝试创建自己的表单,但无法弄清楚。

forms.py

 from django import forms 
 from .models import Hotel

class HotelForm(forms.Form):
   collaborateurs = forms.ModelChoiceField(queryset=collaborateurs.objects.all())

谢谢

1 个答案:

答案 0 :(得分:2)

我建议您创建一个自定义窗口小部件。

在某些“模板”文件夹中创建一个“小部件”文件夹,并创建“ pk-select.html”。

widgets / pk-select.html

<select name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>
  {% for group_name, group_choices, group_index in widget.optgroups %}
    {% if group_name %}
      <optgroup label="{{ group_name }}">
    {% endif %}
    {% for option in group_choices %}
      <option value="{{ option.value|stringformat:'s' }}"{% include "django/forms/widgets/attrs.html" %}>{{ option.value }}</option>
    {% endfor %}
    {% if group_name %}
      </optgroup>
    {% endif %}
  {% endfor %}
</select>

然后,像这样修改您的“ form.py”

form.py

from django.forms import ModelForm
from django.forms.widgets import Select
from .models import Hotel


class PkSelect(Select):
    template_name = 'widgets/pk-select.html'


class HotelCreateForm(ModelForm):
    class Meta:
        model = Hotel
        fields = ['hotel', 'code', 'collaborateurs', 'planning', 'payday']
        widgets = {
            'collaborateurs': PkSelect(attrs={})
        }

接下来,我希望您对“ view.py”进行一些更改

view.py

class HotelCreateView(LoginRequiredMixin, CreateView):
    form_class = HotelCreateForm
    template_name = 'hotel_form.html'

    def form_valid(self, form):
        form.instance.manager_hotel = self.request.user
        return super().form_valid(form)

进行更改的部分是“ pk-select.html”中的这一行

<option value="{{ option.value|stringformat:'s' }}"{% include "django/forms/widgets/attrs.html" %}>{{ option.value }}</option>

最初,您在GitHub页面上看到的{{ option.value }}{{ widget.label }}

https://github.com/django/django/blob/master/django/forms/templates/django/forms/widgets/select_option.html

{{ widget.label }}在这种情况下显示用户名,因此我修改了这一部分。

我希望这是您要寻找的,请随时问我我的理解是否错误。