Hey Patrick --
The "verbose_name" attribute is what you want::
class MyModel(meta.Model)
country_1 = meta.ForeignKey(Country, verbose_name="Country One")
country_2 = meta.ForeignKey(Country, verbose_name="Country Two")
Jacob
is it possible to have different label-names for columns relating to the
same foreign table?
fragment of my film model:
country_1 = meta.ForeignKey(Country)
country_2 = meta.ForeignKey(Country)
country_3 = meta.ForeignKey(Country)
in the admin-interface, i´d like to have different labels for c
2 matches
Mail list logo