Sha256: d74ae76dd7ca56e6d5b7eede9d928692799589a12042f955de9fa2efa1ac3158
Contents?: true
Size: 601 Bytes
Versions: 30
Compression:
Stored size: 601 Bytes
Contents
<h1>User Entries in <%=@pool.name%></h1> <% if @pool.user_entries.size > 0 -%> <table border="0" cellspacing="0" cellpadding="3"> <tr class="entryTableHead"> <th>User</th> <th>Entry Name</th> <th>Completed?</th> </tr> <% @pool.user_entries.each do |entry| -%> <tr class="<%= cycle("entryTableEven", "entryTableOdd")%>"> <td><%=entry.user.login%></td> <td><%=link_to entry.name, :controller => 'entry', :action => 'show', :id => entry.id%></td> <td><%=entry.completed%></td> </tr> <% end -%> </tr> </table> <% else -%> <p> <i>There are no user entries in this pool.</i> </p> <% end -%> <p> </p>
Version data entries
30 entries across 30 versions & 1 rubygems