﻿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
32399	Allow method_decorator to handle multiple functions	Alexey Kotenko	nobody	"Allowing `method_decorator` to handle multiple function names would avoid invoking it multiple times:

{{{#!python
@method_decorator(login_required, name='get')
@method_decorator(login_required, name='post')
class SimpleView(View):
    ...
}}}

Instead of this lets modify function to polymorpic style:
{{{#!python
@method_decorator(login_required, name=['get', 'post'])
class SimpledView(View):
    ...
}}}

"	New feature	new	Utilities	dev	Normal				Unreviewed	0	0	0	0	0	0
