Events activities and history

Hi, I wonder if it is possible to see a report showing Indico system activities that include the history of creating events and other activities

Regards

Only the statistics you get on the category level, e.g. https://indico.cern.ch/category/0/statistics

1 Like

Thanks for your quick reply. Is there any way(like indico shell) I can know how many events created by a specific user?

Sure. Find the user id (e.g. by searching in the admin area, going to their profile, and copying it from the URL), then do this in indico shell: User.get(ID).created_events.count()

You can also add .filter_by(is_deleted=False) to exclude any deleted events. And if you use .all() instead of .count() you’ll see the IDs and titles of those events (useful in case you suspect a user to be a spammer).

1 Like