Opened 15 years ago

Closed 11 years ago

#10293 closed New feature (duplicate)

Show Unicode representations next to ManyToMany raw_id_field

Reported by: joaoolavo Owned by: nobody
Component: contrib.admin Version: 1.0
Severity: Normal Keywords: raw_id_field, manytomanyfield, manytomanyrawidwidget, unicode representation
Cc: carlos.palol@…, stan@… Triage Stage: Design decision needed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: yes

Description

Here's what's necessary to be changed to show the Unicode strings of the related objects next to a ManyToMany raw_id_field. Inside file django/contrib/admin/widgets.py, change the method label_for_value() of class ManyToManyRawIdWidget to this one:

def label_for_value(self, value):
        value = [int(v) for v in value.split(',')]
        objs = self.rel.to._default_manager.filter(pk__in=value)
        return '&nbsp;<strong>%s</strong>' % ',&nbsp;'.join(truncate_words(obj, 14) for obj in objs)

Attachments (1)

m2m_raw_id_field_improvement.patch (553 bytes ) - added by joaoolavo@… 15 years ago.
Patch with the improvement

Download all attachments as: .zip

Change History (8)

comment:1 by Jacob, 15 years ago

Triage Stage: UnreviewedDesign decision needed

Can you please provide this change as a real patch? See the contributing documentation if you need help generating a patch.

by joaoolavo@…, 15 years ago

Patch with the improvement

comment:2 by Chris Beaven, 13 years ago

Severity: Normal
Type: New feature

comment:3 by Julien Phalip, 13 years ago

UI/UX: set

comment:4 by Julien Phalip, 12 years ago

Easy pickings: unset

See also #7028 re: improving the raw_id_fields widget UI.

comment:5 by Carlos Palol, 12 years ago

Cc: carlos.palol@… added

comment:6 by Stanislas <stan@…>, 12 years ago

Cc: stan@… added

I have merged this patch in #7028.

comment:7 by Jacob, 11 years ago

Resolution: duplicate
Status: newclosed

Closing as dup of #7028.

Note: See TracTickets for help on using tickets.
Back to Top