Submitty icon indicating copy to clipboard operation
Submitty copied to clipboard

Forum Stat Page Upduck Count

Open Adsalor opened this issue 1 year ago • 1 comments

What problem are you trying to solve with Submitty The forum stat page currently only includes total posts, total threads, and deleted threads, and does not reference upducks at all.

Describe the way you'd like to solve this problem A fourth stat column, listing total upducks of each user, should be added to the stat page.

Describe any potential alternatives you'd tried to solve the problem I wrote an SQL command for SQL Toolbox to achieve the same thing, but it's less convenient: select p.author_user_id, count(f.*) as upducks from posts p join forum_upducks f on p.id = f.post_id group by p.author_user_id order by upducks desc;

Additional context This column could be helpful for instructors attempting to give extra credit for frequent forum users.

Adsalor avatar Apr 21 '24 18:04 Adsalor

Stat page header image - there's empty space between the 'Total Deleted Posts' and 'Show Posts' which could be used for this column. no_upducks

Adsalor avatar Apr 21 '24 18:04 Adsalor