Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a login form, which needs to be re-directed to the main page once the login is performed but for some reason I get the page not found error & it gets re-directed to the below page instead of main page.

http://127.0.0.1:8000/accounts/profile/

Here is the code,

login.html

<html>
    <head>
        <title>Django Bookmarks - User Login</title>
    </head>
    <body>
        <h1>User Login</h1>
        {% if form.errors %}
            <p>Your username and password didnt match.Please try again.</p>
        {% endif %}
        <form method="post" action=".">
            <p>label for="id_username">Username:</label>
                {{ form.username }}</p>
            <p>label for=id_password>Password:</label>
                {{ form.password}}</p>
            <input type="hidden" name="next" value="/" />
            <input type="submit" value="login" />
        </form>
    </body>
</html>

url.py

urlpatterns = patterns('',
        (r'^admin/', include(admin.site.urls)),
        (r'^$',main_page),
        (r'^user/(\w+)/$',user_page),
        (r'^login/$', 'django.contrib.auth.views.login'),
        (r'^logout/$', logout_page),
        (r'^site_media/(?P<path>.*)$', 'django.views.static.serve',{'document_root':site_media}),
        (r'^register/$', register_page),
        (r'^volunteer/$', volunteer_page),
        (r'^save/$', bookmark_save_page),
)
share|improve this question
Your accept rate is quite low. Please go back through your previously-asked questions and accept answers that you found helpful. meta.stackoverflow.com/questions/5234 – dgw Mar 29 '12 at 16:07

1 Answer

up vote 2 down vote accepted

Change the LOGIN_REDIRECT_URL value in settings.py to you main page's URL. It defaults to /accounts/profile/ if it doesn't exist.

You can also read the LOGIN_REDIRECT_URL documentation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.