Closed (fixed)
Project:
Voting API
Version:
5.x-1.5
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
2 Jul 2007 at 16:10 UTC
Updated:
24 Mar 2008 at 01:01 UTC
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
Comment #1
ShutterFreak commentedFound the fix: there's a field named 'VotingAPI percent vote user' that does the job.
Comment #2
summit commentedHi,
May be nice to share how you did this?
Greetings,
Martijn
Comment #3
glob commentedYeah very nice! :(
Comment #4
glob commentedFound it...
We need to put VotingAPI points vote user as a field and the users name will show!