Re: User Statistics

2022-09-23 Thread Walter Randazzo
Usung Django admin panel. El jue, 22 sept 2022 20:28, Saudi Mostafa escribió: > Pls I need help > How can I get as an administrator statistics for users and activities > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

User Statistics

2022-09-22 Thread Saudi Mostafa
Pls I need help How can I get as an administrator statistics for users and activities -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

django-request to log user statistics

2020-01-30 Thread Santhosh sridhar
Hi All, I am trying to use django_request module to login the user statistics. I have two versions of django-request 1.5.2 and 1.5.5 installed and I could see both the egg files inside site-packages directory. But when I tried to use 'request' in my INSTALLED_APPS settings I am getting an error

app for user statistics of submissions/ activity/ etc ? app for geotagging?

2009-09-12 Thread pcrutch
is there an app out there that keeps track of user submissions / activity related to your models ? we want some sort of way of giving user feedback. whats the status of geotagging ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: User statistics.

2007-12-27 Thread hedronist
> I've already built this stuff, you have to build a database model and > a middleware to track user visit and then calculate how long user was > online. I think we are solving different problems. The code you point to creates data which is ephemeral and only addresses 'who is online'. The

Re: User statistics.

2007-12-27 Thread skam
I've already built this stuff, you have to build a database model and a middleware to track user visit and then calculate how long user was online. For online users please have a look at the following posts:

Re: User statistics.

2007-12-27 Thread hedronist
I'm in the process of building a 'session browser.' 1. The 'who is online' function basically asks 'who has fetched a page in the last N minutes.' The django_session table has an expire_date field which can be converted to a sort of 'time of last click' by subtracting the 'cookie lifetime' from

User statistics.

2007-12-27 Thread grassoalvaro
Hi, I need to know how long user was on the site, who's online (user) and how many guests are online. I was searching for some kind of django- module but didn't find anything. Has anyone already completed module for that? (or) How to build that kind of functionality? Regards.