mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-16 01:41:23 +00:00
1e64b50109
- Bans - Articles - Forums - Users Further styling improvements to form elements
14 lines
No EOL
328 B
Text
14 lines
No EOL
328 B
Text
<div id="bans">
|
|
<h1>Active bans</h1>
|
|
|
|
<%= link_to 'New ban', new_ban_path, class: 'button' %>
|
|
|
|
<%= render partial: "list", locals: { bans: @bans.effective } %>
|
|
|
|
<h1>Ban history</h1>
|
|
|
|
<%= render partial: "list", locals: { bans: @bans.ineffective } %>
|
|
|
|
<%= link_to 'New ban', new_ban_path, class: 'button' %>
|
|
</div>
|
|
|