The summary page now had color coded tables. Red = election, green = quickvote.
[selectricity] / app / views / account / summary.rhtml
index 2f24e2801f165c51de6d7b37d9f2c7dd28839e3a..d15e4425b36e6abb3d0e48043900b577cbb705db 100644 (file)
@@ -1,4 +1,4 @@
-<h2>This is your user summary profile, <%=h @user.login.capitalize %></h2>
+<h3>This is your user summary profile, <%=h @user.login.capitalize %></h3>
 
 <p>
 E-mail: <%=h @user.email %><br />
@@ -6,11 +6,11 @@ Member since: <%=h @user.created_at.strftime("%x") %>
 </p>
 
 <p>Your Elections:
-  <table class="voterbox">
+  <table class="voterbox" id="election">
     <tr>
          <% Election.content_columns.each do |column| -%>
          <% next if column.name.eql?("viewable") || column.name.eql?("quickuser")\
-         || column.name.eql?("active") %>
+         || column.name.eql?("active") || column.name.eql?("anonymous") %>
            <th><%= column.human_name %></th>
          <% end -%>
     </tr>
@@ -26,13 +26,6 @@ Member since: <%=h @user.created_at.strftime("%x") %>
                <% end -%>
          </td>
          <td><%=h election.description %></td>
-         <td>
-         <% if election.anonymous == 0 -%>
-              No
-            <% else -%>
-              Yes
-            <% end -%>
-         </td>
          <td><%=h election.startdate.strftime("%x") %></td>
       <td><%=h election.enddate.strftime("%x") %></td>
       <td>
@@ -48,6 +41,8 @@ Member since: <%=h @user.created_at.strftime("%x") %>
   </table>
 </p>
 
+<br />
+
 <p>
 Your Quickvotes:
 <table class="voterbox">

Benjamin Mako Hill || Want to submit a patch?