﻿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
33357	SuccessMessageMixin doesn't work with LoginView	Cihat Ertem	Baptiste Mispelon	"I have a problem with `SuccessMessageMixin, LoginView`. There is no problem with `CreateView`:
{{{#!py
class CreateRoom(SuccessMessageMixin, CreateView):
    template_name = 'base/room_form.html'
    form_class = RoomForm
    success_url = reverse_lazy('home')
    success_message = 'Message'
}}}

I can capture and use 'Message' in template but with `LoginView`
{{{#!py
class Login(SuccessMessageMixin, LoginView):
    template_name = 'registration/login.html'
    success_url = reverse_lazy('home')
    success_message = 'Message!!!'
}}}

I can not capture 'Message' with `LoginView`."	Bug	assigned	contrib.auth	4.0	Normal		LoginView, messages, SuccessMessageMixin	Baptiste Mispelon	Accepted	0	0	0	0	0	0
