X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c35eb01007440d21ded1ec10e56406108fe44294..57a193789d1f48a856816c357483cfd7c621cd9d:/app/views/election/show.rhtml diff --git a/app/views/election/show.rhtml b/app/views/election/show.rhtml index 3e63628..ff116f4 100644 --- a/app/views/election/show.rhtml +++ b/app/views/election/show.rhtml @@ -2,13 +2,30 @@ Election Overview - -<% 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? ) %> +
The creator of this election has decided that the results + should be viewable while the election is in progress. + <%if @election.voters.empty? %> + However, no one has voted yet. + <% else %> + <%= link_to "View results", :controller => 'voter', :action => 'results', + :id => "open" %>. + <% 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 %>

Summary

@@ -23,29 +40,63 @@ <%= h(@election.description) %> -

End Date

+

Additional Information

-
-<%= @election.enddate %> -
+ + +<% if @election.active? and not @election.authenticated? %> +

Link to election:

+ +<% 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 %> -<% else %> -

There are currently no candidates registered. <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id unless @election.active %>

+<% if not (@election.active? or @election.done?) %> +

+ <%= link_to "Edit Candidates", + :action => 'edit_candidates', :id => @election.id %>

+<% end %> + + +<% 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 %>
@@ -53,14 +104,26 @@
-<% unless @election.voters.empty? %> - <%= render :partial => 'voter_list' %> - <%= link_to "Add or remove voters.", :action => 'edit_voters', :id => @election.id unless @election.active %>

+<% 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? %> +<% if not (@election.active? or @election.done?) %>
Start Election @@ -85,11 +148,27 @@ <%= button_to 'Start Election!', :action => 'start_election', :id => @election.id %> <% end %> +<% elsif @election.embeddable? %> + +
+ Embedding + +
+ + +

To embed your election, copy and paste the following code into your +homepage:

+ +
<%= h("") %>
+ <% end %>