I have "Articles" and "Modules" apps. Inside "Modules" app there is model which have to display articles and they're linked by ManyToManyField in "Modules".
My question is how to modify text value in select field in Django admin? As default it displays names of articles, but i want also some information from Article model here. Is there a simple way to do that?
Depending on your Python version, you'll either want to override the models'
__str__fields (Python 3), or the models'__unicode__fields (Python 2) to change how their appear in the admin.Reference in the Django docs