﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5382	create_update.delete_object always needs a confirmation page	czajnik@…	nobody	"I've found one thing annoying about delete_object() view. In my application I prefer to use HREFs (as opposed to forms) for object deletion, together with JavaScript-based confirmation dialogs. This makes delete_object() useless for me, as I want it to delete the object upon GET request, without aby further confirmation page. 

Could it be possible to add additional param like no_confirmation (with False as default for backward compatibility) ?

Changing 
{{{
if request.method == 'POST':
}}}
to
{{{
if no_confirmation or request.method == 'POST':
}}}
would do the trick then.


"		closed	Generic views	dev		wontfix	delete_object		Unreviewed	0	0	0	0	0	0
