X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/ac5e3489e8b886b7b8a7252ab56ddeb3d3bdadc7..905cf65f6b3e8acc894c268c3bf729e7b0c76292:/app/views/quickvote/create.rhtml diff --git a/app/views/quickvote/create.rhtml b/app/views/quickvote/create.rhtml index 0a5d4aa..7ccb644 100644 --- a/app/views/quickvote/create.rhtml +++ b/app/views/quickvote/create.rhtml @@ -1,47 +1,42 @@ <% -%> -

<%= @quickvote ? "Review and Confirm" : "Create QuickVote" %>

+

Create QuickVote

<%= error_messages_for 'quickvote' %> -<% if @quickvote %> +

-

Please review the data you've entered and confirm it. The candidates -for the vote you've submitted include:

+ +
+<%= render :partial => 'candidate_list' %> +
- - -<% end %> - -<%= form_tag :action => 'create' %> +<% form_tag(:action => 'create') do %> -


<%= text_field 'quickvote', 'name', :size => 15, :maxsize => 12 %>


+required; one line summary on the first line
<%= text_area 'quickvote', 'description', :cols => 50, :rows => 4 %>

-


+<%= check_box('options', 'advanced', + :onclick => 'Element.toggle($("advanced")); false;' )%>Advanced + +

+
+ +<%= submit_tag "Create Quickvote" -%> + +<% end %> + -<%= text_area 'quickvote', 'candidatelist', :cols => 50, :rows => 2 %>

-

<% if @quickvote -%> - <%= submit_tag "Confirm" -%> - <%= hidden_field :quickvote, :reviewed, :value => 1 %> - <% else %> - <%= submit_tag "Submit" -%> - <%- end -%> -

-<%= end_form_tag %>