X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/ffec26b00fc14b92f82137e1e3c62ce78c93ea24..HEAD:/app/views/election/show.rhtml
diff --git a/app/views/election/show.rhtml b/app/views/election/show.rhtml
index 5d22f44..39621bf 100644
--- a/app/views/election/show.rhtml
+++ b/app/views/election/show.rhtml
@@ -1,16 +1,33 @@
-<%= render_partial 'progress', 'review' %>
-
Vote Information
-
-<% if @election.active? %>
+
+<% if @election.enddate < Time.now %>
+Election is finished. <%= link_to "View results",
+ :controller => 'voter', :action => 'index',
+ :election_id => @election.id %>.
+
+<% elsif (@election.active? && @election.early_results? ) %>
+ You have decided that the results
+ should be viewable while the election is in progress.
+ <%if @election.voters.select {|v| v.vote.confirmed?}.empty? %>
+ However, no one has voted yet.
+ <% else %>
+ <%= link_to "View results", :controller => 'election', :action => 'results',
+ :id => @election.id %>.
+ <% end %>
+
+<% elsif @election.active? %>
Vote is in currently in progress. Return to
this page for results on <%= @election.enddate %>.
-<% elsif @election.done? %>
- Election is finished. <%= link_to "View results",
- :action => 'results', :id => @election.id %>.
+
+<% else %>
+
+ <%= link_to "Edit General Information",
+ :action => 'edit_general_information', :id => @election.id %>
+
<% end %>
-Overview
-
Summary
@@ -23,39 +40,96 @@
<%= h(@election.description) %>
-End Date
+Additional Information
-
-<%= @election.enddate %>
-
+ - Elections will end at <%= @election.enddate
+%>.
- Elections results <% if
+@election.early_results %>will be<% else %>will not be<% end
+%> visible while election is in progress.
-<% unless @election.active %>
-<%= link_to "Edit overview.", :action => 'edit', :id => @election.id %>
+<% if @election.embeddable %>
+- Elections will be embeddable.
<% end %>
-Candidates
-<% %>
-<% unless @election.candidates.empty? %>
- <%= render :partial => 'candidate_list' %>
- <% unless @election.active %>
- <%= link_to "Add, remove, or edit candidates.", :action => 'edit_candidates', :id => @election.id %>
- <% end %>
+<% if @election.kiosk %>
+- Selectricity's kiosk mode will be available.
+<% end %>
+
+<% if @election.verifiable%>
+- Voters will be given tokens to verify their votes.
<% else %>
- There are currently no candidates registered. <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id unless @election.active %>
+- Elections will not be voter verifiable.
+<% end %>
+
+
+
+<% if @election.active? and not @election.authenticated? %>
+Link to election:
+
+- <%= (link_to ("Vote in election",
+ :controller => 'voter', :action => 'index', :election_id => @election.id)).to_s %>
+ (<%= votepassword_url(:urlpassword => "open." + @election.id.to_s) %>)
+
+<% if @election.kiosk %>
+- <%= link_to("Kiosk mode",
+ kiosk_ready_url(:urlpassword => "open." + @election.id.to_s,
+ :kiosk => true)) %>
+ (<%= kiosk_ready_url(:urlpassword => "open." + @election.id.to_s, :kiosk => true) %>)
+ <% end %>
+
+<% end -%>
+
+
+
+<% if not (@election.active? or @election.done?) %>
+
+ <%= link_to "Edit Candidates",
+ :action => 'edit_candidates', :id => @election.id %>
<% end %>
-Voters
-<% unless @election.voters.empty? %>
- <%= render :partial => 'voter_list' %>
- <%= link_to "Add or remove voters.", :action => 'edit_voters', :id => @election.id unless @election.active %>
+<% if @election.candidates.empty? %>
+ There are currently no candidates registered.
+ <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id %>
+
+<% else %>
+ <%= render :partial => 'candidate_list' %>
+<% end %>
+
+
+
+<% if not (@election.active? or @election.done?) %>
+
+ <%= link_to "Change Voters/Options",
+ :action => 'edit_voters', :id => @election.id %>
+<% end %>
+
+<% if not @election.authenticated? %>
+ This election is open the public.
+<% elsif @election.voters.empty? %>
+ There are currently no voters registered.
+ <%= link_to "Add some!", :action => 'edit_voters',
+ :id => @election.id %>
<% else %>
- There are currently no voters registered. <%= link_to "Add some!", :action => 'edit_voters', :id => @election.id unless @election.active %>
+ <%= render :partial => 'voter_list' %>
+ <%= link_to "Add or remove voters.", :action => 'edit_voters',
+ :id => @election.id unless @election.active? or @election.done? %>
+
<% end %>
-<% unless @election.active? %>
- Start Election
+<% if not (@election.active? or @election.done?) %>
+
+
<% if @election.start_blockers.length > 0 %>
Your vote cannot be started for the following reasons:
@@ -75,11 +149,27 @@
- The vote will be "frozen" so that further edits to the
candidate list and voting list cannot occur.
+ <% if @election.authenticated? %>
- All voters will be emailed notifying them that the vote has
begun and of their unique login token.
+ <% end %>
<%= button_to 'Start Election!', :action => 'start_election', :id => @election.id %>
<% end %>
+<% elsif @election.embeddable? %>
+
+
+
+
+To embed your election, copy and paste the following code into your
+homepage:
+
+<%= h("") %>
+
<% end %>