Re: List of Users online

2010-05-19 Thread Brian Neal
On May 19, 12:31 pm, EmileZola wrote: > I want to list the logged in users on my index page and was wondering > what was the right way to do this. > > Can I do it similar to this ? > def index(request): >     return render_to_response('index.html', { >         'online_users':

List of Users online

2010-05-19 Thread EmileZola
I want to list the logged in users on my index page and was wondering what was the right way to do this. Can I do it similar to this ? def index(request): return render_to_response('index.html', { 'online_users': User.objects.filter(last_login > delay) }) delay being "now - 15