Hi all!

   I build an application which will use Django's authentication
system. This is my first Django application that uses auth system, so
sorry if the questions below are trivial.

   1. Do I have to decorate all views with login_required if I want to
keep them secured? Isn't there any inversed method which will secure
all views by default, and I will only enable some of them to public?

   2. My use case is that I need to save ip addresses of users who are
logging into my application. First thing is how to extend user model,
but I think that I found the proper solution in Django Book (user
profile). Second thing is what to do to catch 'logging in' event to be
able to read an ip from request and save it (even if the
authentication isn't successful)? Is it possible to set an event on
existing login method (django.contrib.auth.views.login), or should I
do something different, for example write my own login view?

Hmm.. thats all :)

Thanks in advance.

--
Jakub Wisniowski


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to