4👍
✅
With Django’s class based views you can define a class variable for this;
class DiscountDelete(AdminPermissionRequiredMixin, DeleteView):
model = Discount
http_method_names = ['post']
Then if that view receives a get
request it’ll send back the 405 you’re looking for.
Docs on this are here; https://docs.djangoproject.com/en/2.1/ref/class-based-views/base/#django.views.generic.base.View.http_method_names
3👍
With the usual delete view, when you do a GET request you get a confirmation page. Then when you submit the form with a POST request, the object is deleted.
The custom get()
method is disabling GET requests. Perhaps it’s not needed, because the delete requests are submitted from a different view (e.g. a list view).
We can’t tell whether or not you should add this functionality to your delete view. It’s up to you.
- [Django]-How to access model data when overriding Django admin templates?
- [Django]-Celery tasks not works with gevent
- [Django]-Auto increment value in django
- [Django]-Django 1.6: Clear data in one table
Source:stackexchange.com