1 <h1>Listing elections</h1>
5 <% for column in Election.content_columns %>
6 <th><%= column.human_name %></th>
10 <% for election in @elections %>
12 <% for column in Election.content_columns %>
13 <td><%=h election.send(column.name) %></td>
15 <td><%= link_to 'Show', :action => 'show', :id => election %></td>
16 <td><%= link_to 'Edit', :action => 'edit', :id => election %></td>
17 <td><%= link_to 'Destroy', { :action => 'destroy', :id => election }, :confirm => 'Are you sure?' %></td>
22 <%= link_to 'Previous page', { :page => @election_pages.current.previous } if @election_pages.current.previous %>
23 <%= link_to 'Next page', { :page => @election_pages.current.next } if @election_pages.current.next %>
27 <%= link_to 'New election', :action => 'new' %>