refer:
https://docs.djangoproject.com/en/4.0/topics/class-based-views/
https://www.youtube.com/watch?v=Xeh9r0CXBmU&list=PLEsfXFp6DpzTD1BD1aWNxS2Ep06vIkaeW&index=36&t=1s

On Fri, 27 May 2022 at 01:07, 'dtdave' via Django users <
django-users@googlegroups.com> wrote:

> I have this function based view which works perfectly but I would like to
> convert to a class based view but am stuck on how to do this:
> This is my fbv:
>
> def loginView(request):
>     if request.method == 'POST':
>         form = LoginForm(request.POST)
>         if form.is_valid():
>             cd = form.cleaned_data
>             user = authenticate(request,
>                                    email=cd['email'],
>                                    password=cd['password'])
>
>             if user is not None:
>                 login(request, user)
>                 if user.is_authenticated and user.is_client:
>                     return redirect('clients:detail') # Go to client
> dashboard
>                 elif user.is_authenticated and user.is_account_manager:
>                     return redirect('accountmanagers:detail') #Go to
> account manager dashboard
>             else:
>                    return HttpResponse('Invalid login')
>     else:
>             # Invalid email or password. Handle as you wish
>         form = LoginForm()
>
>     return render(request, 'registration/login.html', {'form': form})
>
> I would appreciate any help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/ea6c54f2-ecc0-407d-a296-e168d509a299n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/ea6c54f2-ecc0-407d-a296-e168d509a299n%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGp2JVG6zwbf3i4wfT_BgvTQ07i9ZJwrDiyE%2B%3D3q4y24q4SYFg%40mail.gmail.com.

Reply via email to