oscarmlage / django-cruds-adminlte

django-cruds is simple drop-in django app that creates CRUD for faster prototyping
BSD 3-Clause "New" or "Revised" License
425 stars 82 forks source link

Django 2.0:: 'ForeignKey' object has no attribute 'rel' #48

Closed migue56 closed 6 years ago

migue56 commented 6 years ago

When I have filters with relationships to other models, the debug show:

.../cruds_adminlte/utils.py", line 86, in get_related_class_field
    return objfield.rel.model
AttributeError: 'ForeignKey' object has no attribute 'rel'

The function rel have been changed to remote_field, and that return can change to:

return objfield.rel.model if hasattr(objfield, 'rel') else objfield.remote_field.model