Is there a way (without using a form) to access a model fields \'choices\' value?
I want to do something like field.choices - and get the list of values either in a
Sure, just access the choice attribute of a Model field.
choice
MyModel._meta.get_field('foo').choices my_instance._meta.get_field('foo').choices