django-baker
django-baker copied to clipboard
Adds a management command that generates views, forms, urls, admin, and templates based off the contents of models.py
## Summary by CodeRabbit - **New Features** - Introduced enhanced admin select fields with real-time filtering for improved usability. - Added comprehensive user registration, login, password reset, and password change...
I had this error: ``` File "/home/username/.local/lib/python3.7/site-packages/django_baker/bakery.py", line 10, in from django.utils.six import iteritems ModuleNotFoundError: No module named 'django.utils.six' ``` i changed it into `from six import iteritems` and now...
six is required and therefore needs to be updated to work with recent versions. Looks like all of this already has been suggested before.
FieldDoesNotExist needs to be defined differently in current versions. It can now be found in the django.core.exceptions
There is a small typo in README.rst. Should read `override` rather than `ovverride`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md
Forms should use `enctype="multipart/form-data"` if files are in the model. Alternatively, forms could always use `enctype="multipart/form-data" ` and developers could comment it out if they needed increased efficiency. Example of...
Getting **'ForeignKey' object has no attribute 'rel'** on administration view. Model file attached [models.py.txt](https://github.com/krisfields/django-baker/files/3519812/models.py.txt)
HI, I'm getting TemplateDoesNotExist error (running locale on MacOs). Template loader postmortem report that it looked into django.template.loaders.app_directories.Loader: /anaconda3/lib/python3.6/site-packages/django_baker/templates/base.html while pip install put templates into /anaconda3/lib/python3.6/site-packages/django_baker/templates/django_baker/
When the tables are checked in the django admin panel, the foreign key links were broken and values were looking like this: test In order to fix this issue, mark_safe...