<% @title = t('user.list.title') %>
-<h1><%= t('user.list.heading') %></h1>
+<% content_for :head do %>
+ <%= javascript_include_tag "user" %>
+<% end %>
+
+<% content_for :heading do %>
+ <h1><%= t('user.list.heading') %></h1>
+<% end %>
<% unless @users.empty? %>
<%= form_tag do %>
<%= render :partial => 'user', :collection => @users %>
</table>
- <div id="user_list_actions">
+ <div id="user_list_actions buttons">
<%= submit_tag t('user.list.confirm'), :name => "confirm" %>
<%= submit_tag t('user.list.hide'), :name => "hide" %>
</div>
-
- <script type="text/javascript">
- $("#user_all").change(function () {
- $("#user_list input[type=checkbox]").prop("checked", $("#user_all").prop("checked"));
- });
- </script>
<% end %>
<% else %>
<p><%= t "user.list.empty" %></p>