Sha256: 9582113c882aa865ee94590095266b46a86bfaf1893f2c6368d202c9b58330ed
Contents?: true
Size: 467 Bytes
Versions: 13
Compression:
Stored size: 467 Bytes
Contents
<h1><%=@pool.name%> Entries For <%=current_user.login%></h1> <% if @entries.empty? %> <p> You have no entries. </p> <% else %> <ul> <% @entries.each do |entry| %> <li><%= link_to entry.name, :action => 'show', :id => entry.id %> <% if entry.completed %><span class="entryCompleted">COMPLETED</span><%else%><span class="entryPending">PENDING</span><%end%></li> <% end %> </ul> <% end %> <p> <%= link_to 'Create a new entry', :action => 'new', :id => @pool.id %> </p>
Version data entries
13 entries across 13 versions & 1 rubygems