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 country_1 to
_3 when editing/updating a film. could look like:

Country
Country Co-Production (optional)
Country Co-Production (optional)

which would result in something like (code is not correct, of course):

country_1 = meta.ForeignKey(Country, labelName="Country")
country_2 = meta.ForeignKey(Country, labelName="Country Co-Production
(optional)")
country_3 = meta.ForeignKey(Country, labelName="Country Co-Production
(optional)")

patrick

Reply via email to