[Answer]-Can I make a view using UpdateView and DeleteView together?

1👍

Yes this is possible. It is possible create a view to handle update and delete functionality using both class based views and function based views. You will find it much easier using function based views. (I’m not sure what you mean by ‘merge’ DeleteView and UpdateView, but if you’re talking about inheritance then no you can’t do that).

See this question for starters.

Leave a comment