X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/ffec26b00fc14b92f82137e1e3c62ce78c93ea24..947bdc28cd01bc025ffde2af3472b38e5d30f9d1:/app/views/election/edit_candidates.rhtml diff --git a/app/views/election/edit_candidates.rhtml b/app/views/election/edit_candidates.rhtml index 837f755..7e1f315 100644 --- a/app/views/election/edit_candidates.rhtml +++ b/app/views/election/edit_candidates.rhtml @@ -1,12 +1,31 @@ -<%= render_partial 'progress', 'candidates' %> -

Edit/Add Candidates

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

The following are valid options or candidates in this election:

-1;3A +<% 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' %> @@ -16,12 +35,12 @@

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 ) do %> -<%= render :partial => 'candidate_form' %> -<%= submit_tag "Add Candidate" %> -<% end %> +

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

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