<% %>

Listing elections

<% for election in @elections %> <% end %>

<%= link_to election.name, :action => 'show', :id => election %>

Description:

<%= election.description %>

Election Information:

  • <%= election.voters.length %> registered voters
  • <%= "Not " unless election.anonymous == 1 %>Anonymous
  • Starts <%= election.startdate %>
  • Ends <%= election.enddate %>

Candidates:

<% @election = election %><%= render :partial => 'candidate_list', :id => election.id %>
<%= link_to 'Destroy', { :action => 'destroy', :id => election }, :confirm => 'Are you sure?' %>
<%= link_to 'Previous page', { :page => @election_pages.current.previous } if @election_pages.current.previous %> <%= link_to 'Next page', { :page => @election_pages.current.next } if @election_pages.current.next %>
<%= link_to 'New election', :action => 'new' %>