[Answer]-Select field for all models within a Django app

1👍

You could try this:

from django.db.models import get_app, get_models

app = get_app('my_application_name')
for model in get_models(app):
    # do something with the model

Here there is more information Django get list of models in application

Leave a comment