Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#13825 closed (duplicate)

Primary key is not displayed properly on an editable changelist view under the admin

Reported by: Christopher.Leber@… Owned by: nobody
Component: contrib.admin Version: 1.2
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Karen Tracey)

Description of the Problem:

Primary key does not display properly on the changelist view when it is set under the list_display option and not set under list_display_links option, when another field has been set under the list_editable; the primary key gets encapsulated in a hidden field.

Steps to Reproduce Error:

  • Set the primary key to display under the admin through the list_display option; along with two other fields
  • Set one of the other fields to the list_display_links option
  • Set last field to the list_editable option

Example:

Models.py

class Test_Image(models.Model):
    filename = models.CharField(max_length=20, primary_key=True)
    display_name = models.CharField(max_length=255)
    sort_order = models.IntegerField()
    last_modified_date = models.DateField(editable=False, auto_now=True)

Admin.py

class TestImageAdmin(admin.ModelAdmin):
    list_display = ('display_name', 'filename', 'sort_order',)
    list_display_links = ('display_name',)
    list_editable = ('sort_order',)

Change History (1)

comment:1 by Karen Tracey, 14 years ago

Description: modified (diff)
Resolution: duplicate
Status: newclosed

Fixed formatting, please use preview.

This problem is already described in #12475.

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