Re: Building Privacy Options Like Facebook with Django

2010-11-26 Thread Wim Feijen
Hi Corey, I would recommend using a UserProfile for this, which is bound to a user (so make sure an authenticated user can access only his profile by using request.user.get_profile() in your views. See: http://docs.djangoproject.com/en/dev/topics/auth/ Good luck! Best regards, Wim On Nov 25,

Building Privacy Options Like Facebook with Django

2010-11-25 Thread Corey
I was trying to build a website that would be a good idea to have privacy options to hide certain data such as Facebook does with personal info. I am a somewhat newbie to Django and website building in general. So Im trying to wrap my head around how to work on this. I have indeed tried to look on