You must create view to delete objects.

Or you can use generic delete view (http://docs.djangoproject.com/en/
dev/ref/generic-views/#django-views-generic-create-update-delete-
object).

Add to your routes.py:
(r'^delete/(?P<object_id>[0-9]+)$',
'django.views.generic.create_update.delete_object', {'model': MyModel,
'post_delete_redirect': '/'}),


On Apr 21, 1:58 am, Shantp <sha...@gmail.com> wrote:
> From the docs:
>
> "A good example is the delete() method on each Django model object.
> The template system shouldn't be allowed to do something like this:
>
> I will now delete this valuable data. {{ data.delete }}"
>
> What method should I use for allowing a user to delete an instance of
> the model using a link clicked on the template?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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