Opened 15 years ago

Last modified 15 years ago

#11713 closed

bug in django.contrib.admin.action while delete_selected — at Initial Version

Reported by: ngokai Owned by: nobody
Component: Uncategorized Version: 1.1
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

original code
modeladmin.log_deletion(request, obj.id, obj_display)

change to
modeladmin.log_deletion(request, obj.id, obj_display)

otherwise, while I delete some entity contain large text (google app engine's db.TextProperty), it tell me that the object_id is tooooo long.

Change History (0)

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