Answer the question
In order to leave comments, you need to log in
How to correctly compose the formset processing logic?
There is a form for creating an application on the site.
from django.db import models
class BidDate:
date = models.DateField()
class ChoiceList:
choice_item = models.CharField()
class Bid:
date = models.ForeignKey(BidDate)
choice = models.ForeignKey(ChoiceList)
note = models.CharField()
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question