In my Django website, I’m creating a class that interact dynamically with other applications installed in the website. I have to do a manipulation on each field of each application.
So I want to save the name of all installed applications in a list and get the attributes of each one. There is a way to do that using an iterator or something else ?
Under Django 1.7 and above (thanks Colin Anderson):
Under Django 1.6 and below.
If you want all models, try:
I believe the older function still works.