12๐
โ
Iโve never used an m2m field like this, so thanks! Learned something new.
I found 2 ways to get around the problem:
1: simply reassign the __unicode__
function with a new function
class MyInline(admin.TabularInline):
MyModel.m2m.through.__unicode__ = lambda x: 'My New Unicode'
model = MyModel.m2m.through
2: set up a proxy model for the m2m.through model and use that model instead
class MyThrough(MyModel.m2m.through):
class Meta:
proxy = True
def __unicode__(self):
return "My New Unicode"
class MyInline(admin.TabularInline):
model = MyThrough
3๐
For some reason, the (admittedly now old) accepted answer did not work for me.
This modification, however, did change the header:
MyModel.field.through.__str__ = lambda x: 'New Title'
Where field
is the ManyToMany field.
๐คalstr
- Starting Django with docker unexpected character
- Using Django's collectstatic with boto S3 throws "Error 32: Broken Pipe" after a while
- Iterating over a Django QuerySet while deleting objects in the same QuerySet
- Is it possible to use django_compressor/S3/gzip?
- Django or yii for building a production web app with db and with custom forms and reports
Source:stackexchange.com