added first stab at a kiosk mode
[selectricity-live] / app / views / election / show.rhtml
index 5de6081b298b5d8c89fa0539c4360498d158ec19..ff116f47570a1a8f1cb1bab7e12b393a1b2744e8 100644 (file)
 <li>Elections <strong>will be</strong> embeddable.</li>
 <% end %>
 
 <li>Elections <strong>will be</strong> embeddable.</li>
 <% end %>
 
+<% if @election.kiosk %>
+<li>Selectricity's kiosk mode <strong>will be</strong> available.</li>
+<% end %>
+
+<% if @election.verifiable%>
+<li>Voters <strong>will be</strong> given tokens to verify their votes.</li>
+<% else %>
+<li>Elections <strong>will not be</strong> voter verifiable.</li>
+<% end %>
+
 </ul>
 
 <% if @election.active? and not @election.authenticated? %>
 </ul>
 
 <% if @election.active? and not @election.authenticated? %>
-<p><strong>Link</strong></p>
-<%= (link_to ("Go Vote!", 
-            :controller => 'voter', :action => 'index', :election_id => @election.id)).to_s %>
+<p><strong>Link to election:</strong></p>
+<ul>
+<li><%= (link_to ("Vote in election", 
+          :controller => 'voter', :action => 'index', :election_id => @election.id)).to_s %>
+     (<%= votepassword_url(:urlpassword => "open." + @election.id.to_s) %>)</li>
+
+<% if @election.kiosk %>
+<li><%= (link_to ("Kiosk mode",
+          :controller => 'voter', :action => 'index', :election_id => @election.id, :kiosk => true)).to_s %>
+     (<%= votepassword_url(:urlpassword => "open." + @election.id.to_s, :kiosk => true) %>)</li>
+  <% end %>
+</ul>
 <% end -%>
 
 <div class="normal-header">
 <% end -%>
 
 <div class="normal-header">

Benjamin Mako Hill || Want to submit a patch?