#267 closed defect (fixed)
admin redirect when "save and continue editing" uses object.id
| Reported by: | Owned by: | Adrian Holovaty | |
|---|---|---|---|
| Component: | contrib.admin | Version: | |
| Severity: | normal | 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
When using the "save and continue editing" call, the code makes use of a 'id' attribute in line 769:
return HttpResponseRedirect(post_url_continue % new_object.id)
If the model doesn't have an 'id' attribute but uses primary_key=True on some field, this doesn't work. Either disable the "save and continue editing" button on models without a 'id' attribute or use the pk_name field.
Change History (3)
comment:1 by , 20 years ago
| Status: | new → assigned |
|---|
comment:2 by , 20 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [400]) Fixed #267 -- "Save and continue editing" no longer assumes object has an ID field. Thanks, Hugo