X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/ffec26b00fc14b92f82137e1e3c62ce78c93ea24..acf4bd7abe23a630bceecfa2bbd2688cc7cda3e4:/app/views/quickvote/create.rhtml?ds=inline
diff --git a/app/views/quickvote/create.rhtml b/app/views/quickvote/create.rhtml
index 7ccb644..37e62c6 100644
--- a/app/views/quickvote/create.rhtml
+++ b/app/views/quickvote/create.rhtml
@@ -1,7 +1,10 @@
-<% -%>
-
@@ -12,31 +15,58 @@
<% 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 %>
-<%= render :partial => 'advanced', :locals => {:quickvote => @quickvote} %>
-
-
+
+
-<%= 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 %>
+
+
+