]> projects.mako.cc - selectricity/blobdiff - app/views/quickvote/_result.rhtml
fixed up the results page in a number of ways
[selectricity] / app / views / quickvote / _result.rhtml
old mode 100755 (executable)
new mode 100644 (file)
index e10890a..b0a3a85
@@ -1,10 +1,12 @@
-<% %>
-<% if result.winner? and result.winners.length == 1%>
-  <p><em>The winner is:
-     <strong><%= @candidates[result.winner].name.capitalize %></strong></em></p>
+<div class="winner">
+<p class="winner_text">
+<% if result.winner? and result.winners.length == 1 -%>
+  The winner is:
+     <strong><%=h @candidates[result.winner].name.capitalize %></strong>
 <% elsif result.winner? and result.winners.length > 1 %>
-  <p><em>There was a tie. The winners are: <strong><%=
-  result.winners.collect {|w| @candidates[w].to_s.capitalize}.join(", ") %></strong></em></p>
+  There was a tie. The winners are: <strong><%=h( result.winners.collect {|w| @candidates[w].to_s.capitalize}.join(", ") )%></strong>
 <% else %>
-  <p><em>There is no winner using this method. </em></strong></p>
+  <p>There is no winner using this method. </strong>
 <% end %>
+</p>
+</div>

Benjamin Mako Hill || Want to submit a patch?