We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have found that passing "0" as form_initial_data below line will return None
fields.py:29:
field_dict['initial'] = self.form_initial_data or self.field.initial
Maybe it should be some like this:
field_dict['initial'] = self.form_initial_data if self.form_initial_data is not None else self.field.initial
The text was updated successfully, but these errors were encountered:
Merge pull request #15 from crodriguezgarci/hotfix/unknwon_widget_gen…
8f9b346
…erate_empty_remote_widget Add default widget class to use them when field widget class is unknown
No branches or pull requests
I have found that passing "0" as form_initial_data below line will return None
fields.py:29:
Maybe it should be some like this:
The text was updated successfully, but these errors were encountered: