ensl.org/app/views/teams/_list.html.erb
2020-03-17 02:13:57 +02:00

36 lines
1 KiB
Text

<table class="striped">
<tr>
<th class="country"></th>
<th class="name">Name</th>
<th class="irc">IRC</th>
<th class="members">Members</th>
<% if cuser and cuser.admin? %>
<th class="actions"></th>
<% end %>
</tr>
<% for team in teams %>
<tr>
<td><%= flag team.country %></td>
<td><%= namelink team %></td>
<td><%= h team.irc if team.irc %></td>
<td><%= h team.teamers.count %></td>
<% if cuser and cuser.admin? %>
<td class="actions">
<%= link_to edit_team_path(team) do %>
<%= icon 'pencil' %>
<% end %>
<% if team.active %>
<%= link_to team, confirm: 'Are you sure?', method: :delete do %>
<%= icon 'times' %>
<% end %>
<% else %>
<%= link_to action: "recover", id: team do %>
<%= icon 'save' %>
<% end %>
<% end %>
</td>
<% end %>
</tr>
<% end %>
</table>