1 <p class="title">Groups</p>
\r
3 <% if flash[:group_error] %>
\r
4 <div id="error"><%= flash[:group_error] %></div>
\r
10 <th width="542">Name</th>
\r
14 <% @groups.each do |group| %>
\r
15 <tr class="<%= cycle('even', 'odd') %>">
\r
16 <td><%= image_tag('group.png') %></td>
\r
17 <td><%= h(group.name) %></td>
\r
18 <% unless group.is_the_administrators_group? %>
\r
19 <td><%= link_to image_tag('edit.png'), { :action => 'rename', :id => group }, { :title => 'Rename this group' } %></td>
\r
20 <td><%= link_to image_tag('delete.png'), { :action => 'destroy', :id => group }, { :title => 'Delete this group', :confirm => 'Are you sure?' } %></td>
\r