Add links to create new election/quick vote on the account summary screen.
[selectricity] / app / views / account / summary.rhtml
index b53122ed5094a898d026132ff464132128163f3d..4d79f5b18fe3b0011145a6981c9d69cd038bf31f 100644 (file)
@@ -21,12 +21,8 @@ Member since: <%=h @user.created_at.strftime("%x") %>
     <% @user.elections.select {|e| e.instance_of?(Election)}.each do |election| %>
     <tr>
          <td style="text-align: left;">
-           <% if election.active == 1 -%>
            <%= link_to "#{election.name}", :controller => 'election', 
                            :action => 'show', :id => election %>
-               <% else -%>
-                 <%=h election.name %>
-               <% end -%>
          </td>
          <td style="text-align: left;"><%=h election.description %></td>
          <td style="text-align: left;">
@@ -40,6 +36,7 @@ Member since: <%=h @user.created_at.strftime("%x") %>
     <% end -%>
   </table>
 </p>
+<p><%= link_to "Create a new election", :controller => 'election', :action => 'new' %>.</p>
 
 <br />
 
@@ -77,3 +74,4 @@ Your Quickvotes:
   </tr>
 <% end %>
 </table>
+<p><%= link_to( "Create a new QuickVote", :controller => 'quickvote', :action => 'create') %>.</p>

Benjamin Mako Hill || Want to submit a patch?