If you came here from Google looking for model to dict, skip my question, and just jump down to the first answer. My question will only confuse you.
Is ther
To get values of a models into dictionary, add below code at the place where u need that dictionary
from models import DictModel activity_map = dict(Plan.objects.values_list('key', 'value'))
activity_map is a dictionary which contains required information .