mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
35 lines
915 B
Text
35 lines
915 B
Text
<table class="data">
|
|
<tr>
|
|
<th>User</th>
|
|
<th>Type</th>
|
|
<th>Expiry</th>
|
|
<th>Reason</th>
|
|
<% if cuser and cuser.admin? %>
|
|
<th>Actions</th>
|
|
<% end %>
|
|
</tr>
|
|
|
|
<% bans.each do |ban| %>
|
|
<tr class="<%= ban.color %>">
|
|
<td>
|
|
<% if ban.user %>
|
|
<%= link_to "#{ban.user}", ban %>
|
|
<% else %>
|
|
<%= link_to "# #{ban.id}", ban %>
|
|
<% end %>
|
|
</td>
|
|
<td><%= ban.types[ban.ban_type] %></td>
|
|
<td><%= shorttime ban.expiry %></td>
|
|
<td><%= shorten ban.reason, 30 %> </td>
|
|
<% if cuser and cuser.admin? %>
|
|
<td>
|
|
<% if ban.can_update? cuser %>
|
|
<%= link_to 'E', edit_ban_path(ban) %>
|
|
<% end; if ban.can_destroy? cuser %>
|
|
<%= link_to 'D', ban, :confirm => 'Are you sure?', :method => :delete %>
|
|
<% end %>
|
|
</td>
|
|
<% end %>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|