[Answer]-Redirect from Django Login page to another page and then to the admin page

1👍

Yes, you can customize your view on POST and create a redirect there.

It would look something like:

    from django.shortcuts import redirect

    def my_view(request):
    ...
    if request.method="POST":
    ...
      return redirect('URL' or 'viewname')

Do the same on both pages

Leave a comment