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

Switch iteritems to items for Py3 compatibility #7

Closed mattclement closed 9 years ago

mattclement commented 9 years ago

Under python 3, the forms and urls are not rendered correctly, as .iteritems() was replaced with .items().

krisfields commented 9 years ago

Thanks!