Added Plugin for dynamically adjusting session options (so they will never
[selectricity-live] / app / views / quickvote / my_quickvotes.rhtml
1 <% breakpoint %>
2 <table class="voterbox">
3   <tr>
4   <% ["Name", "Start Date", "End Date", "Description"].each do |column| %>
5         <th><%= column %></th>
6   <% end -%>
7   </tr>
8
9   <% @myqvs.each do |quickvote| %>
10   <tr>
11         <td>
12         <%= link_to "#{quickvote.name}",
13            quickaction_url( :ident => quickvote.name, :action => 'results' ) %>
14         </td>
15     <td><%= quickvote.startdate.strftime("%x") %></td>
16     <td><%= quickvote.enddate.strftime("%x") %></td>
17         <td><%= quickvote.description %>
18   </tr>
19 <% end %>
20 </table>        

Benjamin Mako Hill || Want to submit a patch?