Re: How to add a post-login information to an authenticated user?

2013-10-18 Thread Khanh Tran
Even though i have not directly answered my question, i found out that session storage is an alternative solution. On Friday, October 18, 2013 12:17:50 PM UTC-7, Khanh Tran wrote: > > I am using out of the box django 1.5 authentication solution. After > authenticated, i want to add a 'post_login

How to add a post-login information to an authenticated user?

2013-10-18 Thread Khanh Tran
I am using out of the box django 1.5 authentication solution. After authenticated, i want to add a 'post_login_info' to the user using user_logged_in signal from django.contrib.auth.signals from django.contrib.auth.signals import user_logged_in from django.dispatch import receiver @receiver(use