3 <h2>Activity Summary</h2>
5 <% if @current_elections.length < 1 %>
6 <em>You have not created any elections.</em>
9 <% for election in @current_elections %>
10 <li><%= link_to election.name, :controller => 'election', :action => 'show', :id => election.id %> (ends in <em><%=
11 distance_of_time_in_words Time.now, election.enddate %></em>)</li>
16 <p><%= link_to "Create a new election", :controller => 'election', :action => 'new' %></p>