﻿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
1199	Supporting more than one argument in a custom filter	Aggelos Orfanakos	Jonathan Buchanan	"It would be nice to be able to pass more than one argument to a (custom) filter. E.g.:

{{{
{{ value|custom_filter:arg1,arg2,arg3 }}
}}}

The only current workaround for this, that I have found, is passing a sequence (e.g. tuple, list) containing many arguments and then, inside the custom filter, do something like:

{{{
def custom_filter(value, arg):
    arg1 = arg[0]
    arg2 = arg[1]

    # ...
}}}"	New feature	closed	Template system		Normal	wontfix		Chris Chambers	Accepted	1	1	1	0	0	0
