vedia/views/votes_show_draft.erb
2025-04-06 17:05:07 -06:00

18 lines
376 B
Text

<h1><%= @vote.title %> <%= _("(Draft)") %></h1>
<p><%= @vote.description %></p>
<h2><%= _("Organizers") %></h2>
<ul>
<% @vote.organizers.each do |organizer| %>
<li><%= organizer.user.email %></li>
<% end %>
</ul>
<h2><%= _("Candidates") %></h2>
<% @vote.candidates.each do |candidate| %>
<h3><%= candidate.name %></h3>
<p><%= candidate.description %></p>
<% end %>