-<% @title = t('.title') %>
+<% @title = t(".title") %>
<% content_for :head do %>
<%= javascript_include_tag "user" %>
<% end %>
<% content_for :heading do %>
- <h1><%= t('.heading') %></h1>
+ <h1><%= t(".heading") %></h1>
<% end %>
<% unless @users.empty? %>
<table id="user_list">
<tr>
<td colspan="2">
- <%= t '.showing',
+ <%= t ".showing",
:page => @user_pages.current_page.number,
:first_item => @user_pages.current_page.first_item,
:last_item => @user_pages.current_page.last_item,
<%= check_box_tag "user_all", "1", false %>
</td>
</tr>
- <%= render :partial => 'user', :collection => @users %>
+ <%= render :partial => "user", :collection => @users %>
</table>
<div id="user_list_actions buttons">
- <%= submit_tag t('.confirm'), :name => "confirm" %>
- <%= submit_tag t('.hide'), :name => "hide" %>
+ <%= submit_tag t(".confirm"), :name => "confirm" %>
+ <%= submit_tag t(".hide"), :name => "hide" %>
</div>
<% end %>
<% else %>