added numbering back to embeddables, should count correctly no matter how many candid...
[selectricity] / app / views / embed / full_vote.rhtml
index 170b1f55c42ebbda23f70981002b21468e9906ac..89e384ca9d5c1885b6dd8ee2dff5bb56ae81c7fa 100644 (file)
@@ -2,7 +2,21 @@
 <%= link_to '<img id="header_icon" src="/images/embed_header_icon.png" />',
             {:controller => 'front'}, {:target => "_parent"} %><h2>Vote Now</h2>
 </div>
-<div id="voting-box">
+
+<div id="voting-box" height="<%=(@election.candidates.length + 2)*53 %>px">
+       <%@election.candidates.length.times do |count|%>
+               <% if (count%2)==0%>
+                       <img src="/images/widget_dark.png" 
+                       style="position:absolute;top:<%=(count+1)*53%>px;">
+                       <% else %>
+                       <img src="/images/widget_light.png" 
+                       style="position:absolute;top:<%=(count+1)*53%>px">
+               <% end %>
+               <p class="position"
+               style="position:absolute;top:<%=(10+(count+1)*53)%>px;left:10px">
+                       <%=count+1%>
+               </p>
+       <%end%>
        
        <ul id="rankings-list">
       <% @voter.vote.rankings.each do |ranking| %>
        
        <div style="clear:both;"></div>
        
-       <div id="voting-bottom">
+       <div id="voting-bottom" style="
+       <% if @election.candidates.length%2 == 0 %>
+       background-image:url(/images/bottom_dark.png)
+       <%else%>
+       background-image:url(/images/bottom_light.png)
+       <%end%>" >
                <div id="container">
                        <a href="<%= url_for :action => :confirm, :id => @password, :embed => 'true' %>"><h2 id="submit_vote_button">Submit Vote</h2></a>
                        <p><b>Drag and drop</b> to rank the choices.</p>

Benjamin Mako Hill || Want to submit a patch?