i realize that this has come up before - but with absolutely no clear answers - is it possible within a node that uses the five star widget (and with only registered users allowed to vote) to display a 'tracker' style tab to see who voted and how they voted by username?

or is this possible, somehow, via views?

for example, the core Poll module does this by default and it's a simple admin choice to let users of some role type see who voted and how (on a poll) - but i can't seem to find the best approach to doing this with five star

any/all idea are more than appreciated. thanks.

Comments

realOFF’s picture

At least in version 6.x you can achieve this with Views.
I'll give you the basic requirements so you can look into it more in detail and play around by yourself:

  1. Create a View of Type: Node.
  2. Add a Node: Votes Relationship to it.
  3. Add Fields Votes: User and Votes: Value to show the user and its vote.
  4. You can pass Node: Nid as Argument to filter votes for a desired Node.

From there you can go as far as you like.
For instance, you may embed this View to their respective Nodes using a View CCK Field and theme it as a tab.

Try those suggestions, play with them, and if you experience any troubles ask again. =)