Changes between Version 1 and Version 2 of Ticket #27517


Ignore:
Timestamp:
Nov 21, 2016, 8:12:26 AM (7 years ago)
Author:
Kosei Kitahara
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27517 – Description

    v1 v2  
    1 When create class based view which contain `TemplateResponseMixin`,
     1When create a class based view which contain `TemplateResponseMixin`,
    22
    33{{{
     
    88}}}
    99
    10 `TemplateResponseMixin.render_to_response` call `SimpleTemplateResponse. __init__` with a `charset` keyword argument.
    11 But above method passed charset which is none-keyword argument.
    12 Also `content_type` and `status` are same too.
     10`TemplateResponseMixin.render_to_response` calls `SimpleTemplateResponse. __init__` with a `charset` keyword argument.
     11But, the above method passed `charset` as a non-keyword argument.
     12In addition, `content_type`, `status` are passed also as nonーkeyword arguments, which seems in a wrong order.
Back to Top