6 nov 2008 kl. 05.40 skrev erdmaennchen: > > I'm doing some testruns on Django to find out how it fits me. Until > now: Just great. But - as always - there are some problems you > encounter when you are inexperienced with a specific framework. I've > some Problems at the moment with the built-in Django authentification. > I'm not sure if I'm just not able to find the information in the docs > or if it is just absent. > > Problem: A user reaches the website and sees (besides some public > stuff like news) a small login area. In this area he should be able to > login. After that - if the input was correct - the same site should be > displayed again but for example with a little text in the login area > like "Logged in as, USERNAME - [logout button]" instead of the login > input fields. But if for example the password didn't match the > username the site reloads and an error message gets printed. After the > user logs out there should be the login inputs again for re- > authenticating. This login area should always be visible (with the > correct data... login inputs if not logged in and logout button etc if > logged in). I know that django normally likes to work with URL-changes > but in this case there wouldn't even be a POST request when the user > loads the site in the beginning.
Yes, this is certainly possible, this is actually how my site works. The login view redirects (on success) by default to accounts/ something, but that URL is customizable as a setting (see the auth documentation), so you can just redirect back to the front page. The front page would then check if the user is authenticated (by using request.user.is_authenticated in the template) and show the right things based on that. If for some reason you would like to override the login() view, that is very simple. Basically it's just validating the form input and then using authenticate() and redirecting to different places depending on the result. Good luck, Håkan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---