I can't seem to figure out how to handle the following situation properly in Django:
I have a date range in a model, which I store as two separate fields, date_start and date_end:
start_date = models.DateTimeField()
end_date = models.DateTimeField()
In the form for this model, I want to represent this as one field, with one label:
timespan = forms.Field(widget=widgets.SelectDateRangeWidget(), label="Date Range")
As it is now, I extended MultiWidget to create the SelectDateRangeWidget:
class SelectDateRangeWidget(forms.MultiWidget):
...
Which then incorporates two Date widgets. I want to use this, but then clean it into two separate model fields, and also preserve the ability to load initial data into the form field. Is the only way to manually set initial to the value of those two fields every time, maybe in the __init__ function of the form, and also manually clean it into those two model fields, or is there a cleaner (so to speak) way to do this?
initialvalue to the value of the two model fields in a way that makes sense and doesn't hack the init function of the form? Am I just missing something obvious? – Herman Schaaf Feb 18 at 11:12initialparameter to each field? – Marcin Feb 18 at 12:11__init__function to do it, but still not the best. I thought there might be a cleaner solution, but I suppose the answer is to just go with the ugly solution and move on. – Herman Schaaf Feb 18 at 12:20