mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-01-21 06:58:00 +01:00
20 lines
484 B
Text
20 lines
484 B
Text
|
<%= if Enum.any?(@options) do %>
|
||
|
<%= for option <- @options do %>
|
||
|
<h5>
|
||
|
<%= option.label %>
|
||
|
</h5>
|
||
|
<%= for vote <- option.poll_votes do %>
|
||
|
<span class="interaction-user-list-item">
|
||
|
<%= link(vote.user.name, to: ~p"/profiles/#{vote.user}") %>
|
||
|
<% # = link "(x)", to: ~p"/forums/#{@forum}/topics/#{@topic}/poll/votes/#{vote}" %>
|
||
|
</span>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<% else %>
|
||
|
<p>
|
||
|
<em>
|
||
|
No votes to display
|
||
|
</em>
|
||
|
</p>
|
||
|
<% end %>
|