X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c933ff40da110253bc4c474d9c79c3a4ed98721d..99e1580f0d7707b8e2f8c08f8aae70c3d4906637:/app/views/election/edit_candidates.rhtml diff --git a/app/views/election/edit_candidates.rhtml b/app/views/election/edit_candidates.rhtml index 0c416d5..cd0bd5a 100644 --- a/app/views/election/edit_candidates.rhtml +++ b/app/views/election/edit_candidates.rhtml @@ -1,14 +1,56 @@ -<% @edit = true %> -

<%= @election.name %>: Edit Candidates

+
+ Edit Candidates + +
-

The following are valid options or candidates in this election:

+
- -<%= render :partial => 'candidates_form' %> -<%= button_to "Done!", :action => 'show', :id => @election %> + +
+ Current Candidates + +
+ + +<% unless @election.candidates.empty? %> + <% @election.candidates.each do |candidate| %> + <% @current_candidate = candidate %> + <%= render :partial => 'candidate_line_edit' %> + <% end %> + +<% else %> +

There are no candidates registered for this election.

+<% end %> + +
+ Continue + +
+ +

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