﻿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
27517	TemplateResponseMixin with charset does not work	Kosei Kitahara	nobody	"When create a class based view which contain `TemplateResponseMixin`,

{{{
class MyTemplateView(TemplateResponseMixin, ContextMixin, View):
    def get(self, request, *args, **kwargs):
        context = self.get_context_data(**kwargs)
        return self.render_to_response(context, charset=kwargs.get('charset', 'utf-8'))
}}}

`TemplateResponseMixin.render_to_response` calls `SimpleTemplateResponse. __init__` with a `charset` keyword argument.
But, the above method passed `charset` as a non-keyword argument.
In addition, `content_type`, `status` are passed also as nonｰkeyword arguments, which seems in a wrong order."	Bug	closed	Generic views	1.10	Normal	fixed			Accepted	1	0	0	0	0	0
