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?
your question is vague, but i just assume, you have
Article
Model which has manytomany field with e.g.Something
Modelin admin, you will see
<object_name> whatever text you want
for each object in multiple-select-box, is this what you want?