krisfields / django-baker

Adds a management command that generates views, forms, urls, admin, and templates based off the contents of models.py
BSD 3-Clause "New" or "Revised" License
389 stars 51 forks source link

Broken with Django 1.9 #10

Closed bcoover closed 7 years ago

bcoover commented 8 years ago

Just wanted to let you know that django-baker isn't working with Django 1.9. It appears that they changed how get_app works, so importing that now fails. Seems to be this change needed:

http://stackoverflow.com/questions/34069486/add-all-models-to-admin-site-django-1-9

leonardoo commented 8 years ago

Appconfigs changes everything in 1.7 and in 1.9 they drop the old api App/Models, this PR https://github.com/krisfields/django-baker/pull/13 fix it but broke all support to 1.7 and previous versions

krisfields commented 7 years ago

Sorry for the long delay. I just updated everything to make it compatible with Django 1.10. I imagine it should also work with 1.9 but I'm not sure.