X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/fc0a6a8d7ea15bcdb27ebdd58721401c7045c6e0..83a39529b634c0344a7884d5813e3f7e1a7dbcb4:/app/views/election/edit_candidates.rhtml diff --git a/app/views/election/edit_candidates.rhtml b/app/views/election/edit_candidates.rhtml old mode 100755 new mode 100644 index cc2c16a..cd0bd5a --- a/app/views/election/edit_candidates.rhtml +++ b/app/views/election/edit_candidates.rhtml @@ -1,10 +1,33 @@ -

Edit/Add Candidates

+
+ Edit Candidates + +
+ +
+ +<% if @election.active == 0 %> + +
+ Enter New Candidate + +
<%= error_messages_for :candidate %> -<% unless @election.candidates.empty? %> -

The following are valid options or candidates in this election:

+<% form_tag( { :action => :add_candidate, :id => @election.id }, + :multipart => true ) do %> +<%= render :partial => 'candidate_form' %> +

<%= submit_tag "Add Candidate" %>

+<% end %> + + +
+ Current Candidates + +
+ +<% unless @election.candidates.empty? %> <% @election.candidates.each do |candidate| %> <% @current_candidate = candidate %> <%= render :partial => 'candidate_line_edit' %> @@ -14,12 +37,20 @@

There are no candidates registered for this election.

<% end %> -

Please enter new candidates below.

+
+ Continue + +
-<%= form_tag( { :action => :add_candidate, :id => @election.id }, - :multipart => true ) %> -<%= render :partial => 'candidate_form' %> -<%= submit_tag "Add Candidate" %> -<%= end_form_tag %> +

When you are done entering candidates, please click the button below +to proceed to the next step.

+ +<%= button_to "Proceed to Next Step", :action => 'new_voters', :id => @election %> -<%= button_to "Done!", :action => 'show', :id => @election %> +<% else %> + +

You can not edit the list of candidates once the election has begun. +please return to the <%= link_to "election overview page", :action => +'show', :id => @election.id %>.

+ +<% end %>