merged in from code from the other master
[selectricity-live] / app / views / election / _voter_list.rhtml
index 2a39b8cf4f3199a2568cd26e5e682e08979c9b9f..34aa2074d385a6f5f0d6730e5c6420473cfc84af 100644 (file)
@@ -1,19 +1,23 @@
-<%
-# basic election information template
--%>
+<% if @election.voters.length == 0 %>
+
+<p>There are currently no voters registered for this election.</p>
+
+<% else %>
+
 <p>The following voters are currently registered for this election:</p>
 
 <ul>
-  <% @election.voters.each do |voter| %>
+<% @election.voters.each do |voter| %>
   <div id="voter<%= voter.id %>">
     <li><%= voter.email %>
         <% if @edit %>
         <%= link_to_remote "Delete",
                     :complete => "Element.remove('voter#{voter.id}')",
-                    :url => { :action => :delete_voter, :id => voter.id } %>
+                    :url => { :action => :delete_voter, :id => @election.id,
+                              :voter => voter.id } %>
         <% end %>
     </li>
   </div>  
   <% end %>
 </ul>
-
+<% end %>

Benjamin Mako Hill || Want to submit a patch?