I am using ModelForms to make forms for a website, but I want more control of what text is displayed in the Select box.
An example model could look like this
class Test(models.Model)
ID = IntegerField()
Label = CharacterField()
recipient = ForeignKey(Person)
product = ForeignKey(Product)
So, my problem is, that when I make a modelForm of this model, the foreign key fields are made into select fields, that has the primary key of the object in the underlying value, and the text displayed is the text from the objects __unicode__() method. In this case, only the product ID is displayed (this is a serial code number, which makes no sense to the user). I would like to be able to make a custom label like "[serial], [product name]".
I can't seem to find any pointers on the official Django documentation, so i wondered if anyone would help? :)
__unicode__method of the model to show whats expected? – Rohan Aug 16 '12 at 6:14