django-bootstrap-datepicker
django-bootstrap-datepicker copied to clipboard
[Question] Multidate Picker
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()