ensl.org/app/views/teams/_list.html.erb

39 lines
1.1 KiB
Text
Raw Normal View History

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