I have models:
class Lang(models.Model):
name = models.CharField()
symbol = models.CharField()
...
class News(models.Model):
...
some fields
...
class NewsLang(models.Model):
news = models.ForeignKey(News)
lang = models.ForeignKey(Lang)
...
some language specific fields
...
how to do it in such a way that the admin can edit both models simultaneously, for example: select the language and edit specific data combined with models News and NewsLang?
You can use an InlineModelAdmin e.g.