X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/a8006b0bf9687f8882c3073eca2e8b4ebc7cde4a..c49bd887561c4ee07feef7e6e8d25b6a3f15b5b7:/app/views/quickvote/create.rhtml diff --git a/app/views/quickvote/create.rhtml b/app/views/quickvote/create.rhtml index a7ccd63..c05424e 100644 --- a/app/views/quickvote/create.rhtml +++ b/app/views/quickvote/create.rhtml @@ -1,42 +1,68 @@ -<% -%> -

Create QuickVote

- -<%= error_messages_for 'quickvote' %> +
+ Quickvote + Create New QuickVote +
-

+

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

-


+

required; 5-12 characters; only letters and numbers; no spaces

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

+

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

-


+

-<%= text_area 'quickvote', 'description', :cols => 50, :rows => 4 %>

+

required; free-form
-<%= check_box('options', 'advanced', - :onclick => 'Element.toggle($("advanced")); false;' )%>Advanced +<%= text_field 'quickvote', 'description', :size => 50 %>

-
+
+ Advanced Options + +
+
-<%= submit_tag "Create Quickvote" -%> + <% fields_for 'quickvote', @quickvote do |quickform| %> -<% end %> +

+ +

<%= quickform.select('election_method', + %w(ssd condorcet plurality approval borda) ) %>

+ +

+

<%= quickform.date_select(:enddate, :start_year => Time.now.year) %>

+ +

+

Do you want the results to be visible while the election is active?

+

Yes <%= quickform.radio_button(:viewable, 1)%> + No <%= quickform.radio_button(:viewable, 0)%>

+ <% if session[:user] %> +

Notification

+

Would you like to be e-mailed when this QuickVote concludes?

+ +

Yes <%= quickform.radio_button(:notices, 1)%> + No <%= quickform.radio_button(:notices, 0)%>

+ <% end -%> + + <% end %> + +
+
+ +

<%= submit_tag "Create Quickvote" -%>

+ +<% end %>