X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/04f827dd4647f3a7d6e5bd8f5e9083c730a8dccc..c65b1e11059c5cf510b54c785d4a246215058f70:/app/views/quickvote/index.rhtml diff --git a/app/views/quickvote/index.rhtml b/app/views/quickvote/index.rhtml index 2c5bcd1..eb37845 100644 --- a/app/views/quickvote/index.rhtml +++ b/app/views/quickvote/index.rhtml @@ -1,11 +1,19 @@ <% %> -

QuickVote: <%= @voter.election.name %>

-

Description:

-
<%= @voter.election.description %>
+<% if @voter.election.shortdesc %> +

<%= @voter.election.shortdesc %>

+<% else %> +

QuickVote

+<% end %> + +<% if @voter.election.longdesc %> +

Description:

+
<%= @voter.election.longdesc %>
-

Vote in Election

-<% if @voter.session_id %> +

Vote

+<% end %> + +<% if @voter.voted? %>

You have already voted. You can:

<% else %> - <%= render_partial 'voter/vote' %> + +

Drag and drop the items on the following list until they are in order +from most preferred at the top to least preferred at the +bottom. When you are done, press confirm to record your vote.

+ +
+
    + <% for ranking in @voter.vote.rankings %> +
  1. + <%= ranking.candidate.name.capitalize %>
  2. + <% end %> +
+
+ +
+ +<%= button_to "Confirm Vote", quickaction_url( :action => 'confirm', :votename => @voter.election.name) %> + +<%= sortable_element 'rankings-list', + :url => { :action => "sort_candidates" , :id => @voter.vote.id }, + :complete => visual_effect(:highlight, 'rankings-list') %> + <% end %>