You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I would like to use this as a multidate picker for scheduling. My thinking was to use a ForeignKey field to connect the to and use that to populate the DatePicker. Is this the best way to do this?
class Product(models.Model):
desc = models.charfield()
class ProductBooking(models.Model):
product = models.ForeignKey('catalogue.Product')
booking_date = models.DateField()
The text was updated successfully, but these errors were encountered:
Hi, I would like to use this as a multidate picker for scheduling. My thinking was to use a ForeignKey field to connect the to and use that to populate the DatePicker. Is this the best way to do this?
The text was updated successfully, but these errors were encountered: