I want to be able to provide a list of possible values when entering a text field in django admin. I have a legacy database so I can't add a new model and reference that.
Could I provide something like:
possible_values = ['one','two',three']
to the fieldsets tuple, for a particular field in model handler?
Sorry for the newbie question.