The margins on the buttons aren't needed since the table has a bottom margin, and the button class has never been applied since it was incorrectly in the id field. The table row override had no effect since the cells have their own vertical-alignment set.
45 lines
1.5 KiB
Text
45 lines
1.5 KiB
Text
<% @title = t(".title") %>
|
|
|
|
<% content_for :head do %>
|
|
<%= javascript_include_tag "user" %>
|
|
<% end %>
|
|
|
|
<% content_for :heading do %>
|
|
<h1><%= t(".heading") %></h1>
|
|
<% end %>
|
|
|
|
<% unless @users.empty? %>
|
|
<%= form_tag do %>
|
|
<%= hidden_field_tag :status, params[:status] if params[:status] %>
|
|
<%= hidden_field_tag :ip, params[:ip] if params[:ip] %>
|
|
<%= hidden_field_tag :page, params[:page] if params[:page] %>
|
|
<table id="user_list" class="table table-borderless table-striped">
|
|
<thead>
|
|
<tr>
|
|
<td colspan="2">
|
|
<%= t ".showing",
|
|
:page => @user_pages.current_page.number,
|
|
:first_item => @user_pages.current_page.first_item,
|
|
:last_item => @user_pages.current_page.last_item,
|
|
:items => @user_pages.item_count,
|
|
:count => @user_pages.current_page.last_item - @user_pages.current_page.first_item + 1 %>
|
|
<% if @user_pages.page_count > 1 %>
|
|
| <%= raw pagination_links_each(@user_pages, {}) { |n| link_to n, @params.merge(:page => n) } %>
|
|
<% end %>
|
|
</td>
|
|
<td>
|
|
<%= check_box_tag "user_all", "1", false %>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
<%= render @users %>
|
|
</table>
|
|
|
|
<div>
|
|
<%= submit_tag t(".confirm"), :name => "confirm", :class => "btn btn-primary" %>
|
|
<%= submit_tag t(".hide"), :name => "hide", :class => "btn btn-primary" %>
|
|
</div>
|
|
<% end %>
|
|
<% else %>
|
|
<p><%= t ".empty" %></p>
|
|
<% end %>
|