I have date field which is editable=False.
The field is populated with datetime.now() at creation time.
Since admin will not show editable=False fields, I created a custom admin.
The custom admin uses a form with this field:
date = forms.DateTimeField(widget=widgets.AdminSplitDateTime, required=False)
What I want to achieve is this:
- users will not be able to touch this field (hence,
editable=False) - Admin will be able to change the field's value but won't be forced to (this is why I have
required=False) - Admin will be able to see the current value of the field.
I'm failing to achieve (3). I create an entry, and I see that it has a valid date when I look in the database. But when I open it from admin panel, the date widget is empty.
Any ideas how to make the date widget show the current value of the field?
Thanks