On Feb 16, 1:20 pm, Derek <gamesb...@gmail.com> wrote:
> Is there a secure method to override the facility for "and it's related
> items will be deleted" for a specific model in the Django Admin?
>
> In some cases it is not appropriate that the "parent" model is deleted until
> all the "child" models have been, for example, reallocated to new parents.
> If possible, I would rather generate a user-friendly response to the effect
> of "this object cannot be deleted until all the related items are deleted or
> reassigned". (Note this applies regardless of user-level permissions - i.e.
> someone might have the "right" to delete, but that still does not mean that
> they should be able to delete those that fall into this case.)
>
> Thanks
> Derek

You could add a pre_delete signal [1] to your model that only allows
deletion of items if they have no children etc. and raises an
exception with a friendly message otherwise.  I think this would kick
in after that page appears in the admin though so you may still want
some way to change that page and have the signal as a safety net.

--
G

[1] 
http://docs.djangoproject.com/en/1.1/ref/signals/#django.db.models.signals.pre_delete

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to