%= if Enum.any?(@options) do %>
<%= for option <- @options do %>
<%= option.label %>
<%= for vote <- option.poll_votes do %>
<%= link(vote.user.name, to: ~p"/profiles/#{vote.user}") %>
<% # = link "(x)", to: ~p"/forums/#{@forum}/topics/#{@topic}/poll/votes/#{vote}" %>
<% end %>
<% end %>
<% else %>
No votes to display
<% end %>