X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c933ff40da110253bc4c474d9c79c3a4ed98721d..fd484b33a3920e0031007c5c2f1dec61913cbab5:/app/views/election/show.rhtml diff --git a/app/views/election/show.rhtml b/app/views/election/show.rhtml index 954e480..90c93ea 100644 --- a/app/views/election/show.rhtml +++ b/app/views/election/show.rhtml @@ -1,18 +1,67 @@ <% %>

Information On <%= @election.name %>

-

Overview <%= link_to "edit", :action => 'edit', :id => @election.id %>

- +

Election Overview

+

Description

-<%= @election.description %> +<%= h(@election.description) %>
-

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

+

Election End Date

+ +
+<%= @election.enddate %> +
+ +

<%= link_to "Edit election overview.", :action => 'edit', :id => @election.id %>

+ +

Candidates

+ +<% unless @election.candidates.empty? %> + <%= render :partial => 'candidate_list' %> +

<%= link_to "Add, remove, or edit candidates.", :action => 'edit_candidates', :id => @election.id %>

+<% else %> +

There are currently no candidates registered for this election. + <%= link_to "Add some!", :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 %>

+<% else %> +

There are currently no voters registered for this election. + <%= link_to "Add some!", :action => 'edit_voters', :id => @election.id %>

+<% end %> + +

Start Election

+ +<% if @election.start_blockers.length > 0 %> +

Your election cannot be started for the following reasons:

+ +<% else %> +

Please check eveything carefully on this page before starting this +election. Once you begin the election, you will not be able to +add or change candidates, modify the voting lists, or change the +election end time.

+ +

When you begin the election, the following will happen:

-<%= render :partial => 'candidate_list' %> + -

Voters <%= link_to "edit", :action => 'edit_voters', :id => @election.id %>

+<%= button_to 'Start Election!', :action => 'start_election', :id => @election.id %> -<%= render :partial => 'voter_list' %> +<% end %>