0

I have fields in model.py namely name,city which are registered with translation.So automatically two fields name_en and name_he are created in database. I want these fields to display as name_english and name_hebrew in admin portal of django.

In my settings.py :

LANGUAGES = (
    ('en', gettext('English')),
    ('he', gettext('Hebrew')),
)

Any approach to do so.Thanks in advance

Willem Van Onsem
  • 443,496
  • 30
  • 428
  • 555

1 Answers1

0

I have not worked on Translation field. But I think overriding Django admin form or using custom fields can help you.

Checkout this answer

Tarun Jain
  • 58
  • 6