Dictionary of choices based in models

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
def prepare_choice_list(keys_QuerySet, values_QuerySet, foreignKey_field, localKey_field):
# gets the values of the FK in the model as a list of tuples in the form:
# [(row1_FKValue,),(row2_FKValue,),...]
# uses distinct() to not repeat values in the option list
        a = keys_QuerySet.distinct().values(foreignKey_field)

#and then expand the tuples in a single list of elements
	a = [v[foreignKey_field] for v in a]

	b = []

	for v in a:

# search the "human readable" values in the related model 
# for the keys before extracted
		bs = eval("values_QuerySet.get(%s__iexact = '%s').__unicode__()"%(localKey_field,v))

		b.append(bs)

#inserts a empty option as the default (first) option in the select
#just comment the two lines below if you don't want it
	a.insert(0,"")
	b.insert(0,"----------")

# the zip funtions joins two lists in the form [(list1_value, list2_value),...]
	return zip(a,b)

More like this

  1. A Lazy ChoiceField implementation by lsbardel 3 years, 7 months ago
  2. ModelChoiceField with option groups by anentropic 1 year, 5 months ago
  3. Timezone choice field for select box by jmunro 1 year, 2 months ago
  4. A ModelChoiceField with support for title in options based on a field in the model by celopes 2 years, 9 months ago
  5. filtered ModelChoiceField queries by robharvey 5 years, 2 months ago

Comments

(Forgotten your password?)