[Answered ]-Django 1.7 'list_filter' raise AppRegistryNotReady("Models aren't loaded yet.")

2👍

Are you registering the model in the models.py or in admin.py? List_filter requires the model to be loaded already so you have to register it in admin.py so models can load independently.

Leave a comment