Opened 18 years ago
Closed 17 years ago
#3059 closed enhancement (wontfix)
Allow call-backs to implement additional features in Django's auto-admin area.
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | contrib.admin | Version: | |
Severity: | normal | Keywords: | auto admin, admin area, callbacks, plugins |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Here's the use-case: I have comments on my website. Spam is a problem and to reduce the number I want to integrate Akismet filtering into the process. So far so good.
Now... up to now I've used the admin area to approve or delete comments. With Akismet I also need 'mark as spam' and 'mark as not spam' buttons, in order to teach Akismet which comments were wrongly classified.
I'd really like to avoid having to write a separate admin area just to integrate this feature - is there any way to have callbacks that add fields and suchlike to Django's auto-admin area?
newforms-admin will make this request obsolete.