X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/2ba40f97b78f529984ff26c7c7d61c91d213e7b0..c5d48f6ea92e43f07182d20ebe693692b4330437:/app/views/election/edit_candidates.rhtml diff --git a/app/views/election/edit_candidates.rhtml b/app/views/election/edit_candidates.rhtml index b5f06ff..756554d 100644 --- a/app/views/election/edit_candidates.rhtml +++ b/app/views/election/edit_candidates.rhtml @@ -1,7 +1,10 @@ -

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

+

Edit/Add Candidates

+ +<%= error_messages_for :candidate %> <% unless @election.candidates.empty? %>

The following are valid options or candidates in this election:

+1;3A <% @election.candidates.each do |candidate| %> <% @current_candidate = candidate %> @@ -11,6 +14,13 @@ <% else %>

There are no candidates registered for this election.

<% end %> +

Please enter new candidates below.

-<%= render :partial => 'candidates_form' %> -<%= button_to "Done!", :action => 'show', :id => @election %> + +<% form_tag( { :action => :add_candidate, :id => @election.id }, + :multipart => true ) do %> +<%= render :partial => 'candidate_form' %> +<%= submit_tag "Add Candidate" %> +<% end %> + +<%= button_to "Done!", :action => 'new_voters', :id => @election %>