﻿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 worked	Kosei Kitahara	nobody	"When create 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` call `SimpleTemplateResponse. __init__` with a `charset` keyword argument.
But above method passed charset which is none-keyword argument.
Also `content_type` and `status` are same too."	Bug	new	Generic views	1.10	Normal				Unreviewed	0	0	0	0	0	0
