18 lines
382 B
Text
18 lines
382 B
Text
<h1><%= @vote.title %> <%= _("(Draft)") %></h1>
|
|
|
|
<%= markdown(@vote.description) %>
|
|
|
|
<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>
|
|
<%= markdown(candidate.description) %>
|
|
<% end %>
|