Sha256: 3a76965c8b3faaddebbc677e3d41911f3a59d3ebdd6c1f1a4726ff7e2bfe186e
Contents?: true
Size: 543 Bytes
Versions: 68
Compression:
Stored size: 543 Bytes
Contents
<h1>Listing Groups</h1> <table class="table table-hover"> <thead> <th>Title</th> <th>Creator</th> <th></th> </thead> <% @groups.each do |group| %> <tr id="group-<%= group.id %>"> <td><%= group.title %></td> <td><%= group.creator.email if group.creator %></td> <td> <%= link_to "Manage", manage_tasks_group_path(group), :class => "btn btn-default" %> <%= link_to "Learning Content", manage_group_tasks_path(group), :class => "btn btn-default" %> </td> </tr> <%end%> </table>
Version data entries
68 entries across 68 versions & 1 rubygems