Number of reviews by each reviewer

Hi,

We have a rather uneven distribution of abstracts in tracks in our conference. By my estimation, one reviewer has carried out reviews of over 150 abstracts by themselves. Is there a way to accurately extract how many reviews a particular reviewer has carried out, in order to quantify their effort and better thank them for their work?

Somewhat related but seems different to:

Thanks,
Ying

Hey Ying,

unfortunately, as far as I know there is no such feature out of the box. However, you can get that information using indico shell command:

AbstractReview.query.filter(AbstractReview.user_id == <id of the user>).all()

Aforementioned snippet returns a list of all reviews for a given user. Keep in mind that you would need to apply a few more filters if you wanted to get a list of all user reviews e.g. for a specific abstract.

1 Like

Works great, thanks!!

1 Like