django-bootstrap-datepicker icon indicating copy to clipboard operation
django-bootstrap-datepicker copied to clipboard

[Question] Multidate Picker

Open mykljohn opened this issue 8 years ago • 0 comments

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()

mykljohn avatar Oct 06 '17 20:10 mykljohn