私はモデルを持っています:
class HospitalDoctor(models.Model):
hospital = models.ForeignKey(Hospital)
full_name = models.CharField(max_length=100, unique=True)
expertization = models.CharField(max_length=50)
nmc_no = models.CharField(max_length=20)
timings = models.ManyToManyField('Timing',related_name='shift_timing')
appointment = models.IntegerField(default=0)
def __unicode__(self):
return self.full_name
class Timing(models.Model):
hospital = models.ForeignKey(Hospital)
doctor = models.ForeignKey(HospitalDoctor)
day = models.CharField(max_length=20)
mng_start = models.IntegerField()
mng_end = models.IntegerField()
eve_start = models.IntegerField()
eve_end = models.IntegerField()
def __unicode__(self):
return self.day
そして、私はこのためのフォームを作成しました:
class HospitalDoctorInfoForm(forms.ModelForm):
class Meta:
model = HospitalDoctor
fields = ('hospital','full_name', 'expertization', 'nmc_no')
class TimingForm(forms.ModelForm):
class Meta:
model = Timing
fields = ('day','mng_start', 'mng_end', 'eve_start', 'eve_end')
ここでは、HospitalDoctorInfoForm からの個人情報や TimingForm からの 1 週間のスケジュールなど、医師に関する情報を作成します。
日曜日、月曜日のような日の初期値を持つ7日間のスケジュールのTimingFormでタイミングにフォームセットを使用する必要があると思います...
私はビューを書きました:
class HospitalDoctorAddView(CreateView):
template_name = "hospital_doctor_add.html"
model = HospitalDoctor
def post(self, request, *args, **kwargs):
info_form = HospitalDoctorInfoForm(request.POST)
formset = modelformset_factory(request.POST, Timing, form=TimingForm, extra=7)
if formset.is_valid() and info_form.is_valid():
self.formset_save(formset)
self.info_form_save(info_form)
context['formset'] = formset
return render(request, self.template_name, context)
def formset_save(self, form):
frm = Timing()
frm.hospital = self.request.user
frm.mng_start = form.cleaned_data['mng_start']
frm.mng_end = form.cleaned_data['mng_end']
frm.eve_start = form.cleaned_data['eve_start']
frm.eve_end = form.cleaned_data['eve_end']
frm.save()
def info_form_save(self, form):
info = HospitalDoctor()
info.hospital = self.request.user
info.full_name = form.cleaned_data['full_name']
info.expertization = form.cleaned_data['expertization']
info.nmc_no = form.cleaned_data['nmc_no']
info.save()
これを行うと、「 'fields' 属性または 'exclude' 属性のない ModelForm の作成は非推奨です - フォーム TimingForm の更新が必要です」というエラーが表示されます。私は助けが必要です。私がやっていることは正しいですか、それともこれを実装する別の方法があります。