ensl.org/app/views/groups/index.html.erb

27 lines
790 B
Text
Raw Normal View History

2014-04-27 00:34:38 +00:00
<h1 class="title">Listing Groups</h1>
2014-04-27 00:34:38 +00:00
<table class="groups striped">
<tr>
2014-04-27 00:34:38 +00:00
<th class="name">Name</th>
<th class="created">Created</th>
<th class="founder">Founder</th>
<th class="actions"></th>
</tr>
2014-04-27 00:34:38 +00:00
<% @groups.each do |group| %>
<tr>
<td><%= link_to (h group.name), group %></td>
<td><%= h group.created_at.strftime("%d %B %y") %></td>
<td><%= link_to (h group.founder.username), group.founder %></td>
2014-04-27 00:34:38 +00:00
<td class="actions">
<%= 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 %>
</td>
</tr>
<% end %>
</table>
2014-04-27 00:34:38 +00:00
<%= link_to 'New Group', new_group_path, class: 'button' %>