Sha256: f64dc89eeaf3081e6e46ae8aba8c77604c7d2d24c954c13070fe4335e48cd24d

Contents?: true

Size: 652 Bytes

Versions: 42

Compression:

Stored size: 652 Bytes

Contents

<h1>Listing groups</h1>

<table>
  <tr>
  <% for column in Group.content_columns %>
    <th><%= column.human_name %></th>
  <% end %>
  </tr>
  
<% for group in @groups %>
  <tr>
  <% for column in Group.content_columns %>
    <td><%=h group.send(column.name) %></td>
  <% end %>
    <td><%= link_to 'Show', :action => 'show', :id => group %></td>
    <td><%= link_to 'Edit', :action => 'edit', :id => group %></td>
    <td><%= link_to 'Destroy', { :action => 'destroy', :id => group }, :confirm => 'Are you sure?', :method => :post %></td>
  </tr>
<% end %>
</table>

<%= will_paginate @groups %>

<br />

<%= link_to 'New group', :action => 'new' %>

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
backlog-0.37.2 app/views/groups/list.rhtml
backlog-0.37.1 app/views/groups/list.rhtml
backlog-0.36.2 app/views/groups/list.rhtml
backlog-0.17.0 app/views/groups/list.rhtml
backlog-0.17.2 app/views/groups/list.rhtml
backlog-0.17.1 app/views/groups/list.rhtml
backlog-0.17.4 app/views/groups/list.rhtml
backlog-0.17.3 app/views/groups/list.rhtml
backlog-0.17.5 app/views/groups/list.rhtml
backlog-0.18.0 app/views/groups/list.rhtml
backlog-0.17.6 app/views/groups/list.rhtml
backlog-0.19.0 app/views/groups/list.rhtml
backlog-0.20.0 app/views/groups/list.rhtml
backlog-0.20.1 app/views/groups/list.rhtml
backlog-0.21.0 app/views/groups/list.rhtml
backlog-0.21.1 app/views/groups/list.rhtml
backlog-0.21.2 app/views/groups/list.rhtml
backlog-0.21.3 app/views/groups/list.rhtml
backlog-0.22.0 app/views/groups/list.rhtml
backlog-0.22.1 app/views/groups/list.rhtml