Listing Groups

<% @groups.each do |group| %> <% end %>
Name Created Founder
<%= link_to (h group.name), group %> <%= h group.created_at.strftime("%d %B %y") %> <%= link_to (h group.founder.username), group.founder %> <%= link_to icon('pencil'), edit_group_path(group) %> <% if group.can_destroy? cuser %> <%= link_to icon('times'), group, confirm: 'Are you sure?', method: :delete %> <% end %>
<%= link_to 'New Group', new_group_path, class: 'button' %>