[Solved]-Add fields to Django ModelForm that aren't in the model
1👍 If I were you, I would have used the customised Django-admin date/time widget(s) for entering date/time entries. Regarding form validation, make sure you pass the form associated with the request for it to show up form-based errors. (Sample code below) As for using inheritance, it would be a overkill for this use-case as it … Read more