<%= form_for [:admin, @user], html: {id: 'edit_user_form', class: 'form-horizontal'}, remote: true do |f| %>
<% if @user.errors.any? %>
<%= pluralize(@user.errors.count, "erreur") %> <%= I18n.t('prohibited_this_operation') %>:
<% @user.errors.full_messages.each do |msg| %>
-
<%= msg %>
<% end %>
<% end %>
<%= hidden_field_tag :server_url, @user.title.nil? ? '' : @user.title.server.internal_url %>
<% if Server.itself?(PIXADMIN_SERVER_NAME) || Server.itself?(VINGTMINUTES_SERVER_NAME) %>
<% end %>
<% end %>