Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1107033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:52:48+00:00 2026-05-17T01:52:48+00:00

I know about LOGIN_REDIRECT_URL and I know about <form action=?next={{ next|default:/foo }} method=post> in

  • 0

I know about LOGIN_REDIRECT_URL and I know about

<form action="?next={{ next|default:"/foo" }}" method="post">

in django-registration’s login.html template. Here’s what I want to happen:

  • If a user logs in from the homepage,
    redirect them to a URL that contains
    their username (/lists/[username]).

  • If a user logs in from any other
    page, return them to the page they
    were viewing.

The way twitter.com handles this is to simply make the homepage go away for logged in users. I would consider doing that, and it would be pretty easy to solve, but my homepage still has useful stuff on it and I’m not sure I want it to go away for authenticated users. I’d rather redirect them.

I was thinking I could do a conditional in settings.py where LOGIN_REDIRECT_URL is referenced, but the request object is not available in settings (so I can’t access request.user.username to build the redirect). And obviously, I can’t do it in django-registration’s “default” parameter in the template because the username isn’t known before login.

What’s the correct/best way to solve this? Thanks.

Update: Based on S. Lott’s suggestion below, this is what I ended up using (in the homepage view):

if request.user.is_authenticated() and not request.session.get('homepage_redir'): 
    request.session['homepage_redir'] = True
    return HttpResponseRedirect(reverse('list_view',args=[request.user.username])) 

On the first login from homepage, the user is redirected to their personal page and a session variable is set. On subsequent requests for the homepage, the redirect does not occur (because the session var is detected). Code for redirecting logins from any other page is not affected.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T01:52:49+00:00Added an answer on May 17, 2026 at 1:52 am

    If a user logs in from any other page,
    return them to the page they were
    viewing.

    This is what Django does anyway.

    Check for a session and redirect to a login properly, using Django’s already provided functions.

    If a user logs in from the homepage,
    redirect them to a URL that contains
    their username (/lists/[username]).

    This is what view functions are for.

    If the request session is empty, they just logged in. Set a flag in the session and return a redirect to the desired page. Be sure to use the reverse function — do not code the URL anywhere in your applications. Ever.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know about Allow Triggers to Fire Others server setting that allows the action
I know about git diff branch1 branch2 . However, I would like to see
I know about the LINEABOVE and LINEBELOW styles, i was wondering if there is
I know about http://www.upcdatabase.com/ , but it's quite incomplete. Where popular mobile apps getting
I know about primitives and objects living on the heap, but how does the
I know about map/reduce alghoritm and its use. It's using functions that are called
I know about the ADODB.Stream object . But what I really want is a
I know about Options->Fonts and Colors. But there is no option for F# strings(i
I know about the WebRequest and the WebResponse objects. The problem is that I
I know about $(Delphi) and $EDNAME but after much seaching I cant find a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.