Changes between Initial Version and Version 1 of Ticket #26387


Ignore:
Timestamp:
Mar 21, 2016, 10:48:23 AM (9 years ago)
Author:
Tim Graham
Comment:

I found it necessary to include another field in list_display to reproduce this. Otherwise on master, you'll get an error like "The value of 'list_editable[0]' refers to the first field in 'list_display' ('question'), which cannot be used unless 'list_display_links' is set." I edited the ticket description to include this.

Seems to be a regression in Django 1.8 the popup works on 1.7.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26387

    • Property Severity NormalRelease blocker
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Related popup doesn’t open in a changelist when in raw_id_fieldsRelated popup doesn’t open in a changelist when list_editable in raw_id_fields
    • Property Version 1.91.8
  • Ticket #26387 – Description

    initial v1  
    33@register(YourModel)
    44class YourModelAdmin(ModelAdmin):
    5     list_display = ['fk']
     5    list_display = ['pk', 'fk']
    66    list_editable = ['fk']
    77    raw_id_fields = ['fk']
Back to Top