-<ul>
-<% for quickvote in @quickvotes %>
-<li><%= link_to (h(quickvote.shortdesc) || "Unnamed"), quickvote_url(:ident => quickvote.name) %></li>
-<% end %>
-</ul>
+<div id="control-room" class="main-section">
+ <div id="control-room-content">
+ <h2>Control Room</h2>
+
+ <% if session[:user] %>
+ <%= render :partial => 'user_summary' %>
+ <% else %>
+
+ <p>You must have an account to start a new vote or to administer an
+ existing vote. You can log in or create a new account below.</p>
+
+ <%= render_partial 'basic_login' %>
+ <% end %>
+
+ </div>
+</div>
+
+<div id="quickvotes" class="main-section">
+ <div id="quickvotes-content">
+
+ <h2>QuickVotes</h2>
+ <p><em>QuickVotes</em> are like polls: unstructured, non-anonymous and
+ without the complex features of <em>Selectricity</em>. They are the
+ quickest way to make a decision or to compare between voting
+ methods.</p>
+
+ <ul>
+ <li><%= link_to( "Create a QuickVote", :controller => 'quickvote', :action => 'create') %></li>
+ <li><%= link_to( "Recent QuickVotes", :controller => 'quickvote', :action => 'my_quickvotes')%></li>
+ </ul>
+
+ <p>Recently created <em>QuickVotes</em> include:</p>
+ <ul>
+ <% for quickvote in @quickvotes %>
+ <li><%= link_to (h(quickvote.shortdesc) || "Unnamed"), quickvote_url(:ident => quickvote.name) %></li>
+ <% end %>
+ </ul>
+
+ </div>
+</div>
+
+<!--