18 lines
340 B
Text
18 lines
340 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 %>
|