I want to provide a list of people that voted on a given node. The votingapi views code doesn't currently provide this.

I would like use the output from the following SQL query:

SELECT u.name, u.uid FROM votingapi_vote v LEFT JOIN users u ON v.uid = u.uid
WHERE v.vote_id = '%nid';

Ideally I'd like to provide a comma-separated list of voters with and without links to their user profile.

Any help to implement this is greatly appreciated!

Best regards,

Olivier

Comments

ShutterFreak’s picture

Status: Active » Closed (fixed)

Found the fix: there's a field named 'VotingAPI percent vote user' that does the job.

summit’s picture

Hi,

May be nice to share how you did this?
Greetings,
Martijn

glob’s picture

Yeah very nice! :(

glob’s picture

Found it...

We need to put VotingAPI points vote user as a field and the users name will show!