Is there a recommended approach to displaying the choice text rather than integer?
for instance: my_print = Print(paper_type=1) print my_print.paper_type will print out 1. Is there a recommended pattern for printing out "Letter"? I have been doing methods using a dict that I use to create the choices list. (I call items() then sort() to create the choices input). This works well, but I wanted to make sure there isn't another "magic" django method. thanks- Ian