<%# (C) COPYRIGHT HELP/SYSTEMS, L.L.C. 2010 %> <% fields_for @agent do |form| %>

<%= t_label('common.name') %>

<%= h @agent.name %>

<%= form.label :description, t_label('common.description'), :class => "description-label item-label" %>
<%= text_area :agent, :description, :disabled => @view_only, :maxLength => 256, :value => @agent.description, :class => "x-form-field description-field", :style => "overflow:auto;height:64px;" %>

<%= t('common.description_caption') %>

<%= form.label :tag, t_label('common.tags'), :class => "x-form-item label" %>
<%= tags_form_helper(form, "agent[tag_list]", h(@agent.tag_list), {:view_only => @view_only}) %>
<%= form.label :alias, t_label('common.aliases'), :class => "x-form-item label" %>
<%= aliases_form_helper(form, "agent[alias_list]", h(@agent.alias_list), {:view_only => @view_only, :id => @agent.id}) %>
<%= form.label :job_shell, t_label('agents.job_shell'), :class => "job-shell-label item-label" %>
<%= text_area :agent, :job_shell, :disabled => @view_only, :value => @agent.job_shell, :class => "x-form-field job-shell-field" %>

<%= t('agents.job_shell_caption') %>

<%= t_label('agents.product_rel_mod') %>

<%= version_label(@agent) %>

<%= t_label('agents.port_number') %>

<%= h @agent.port_number %>

<%= t_label('agents.ip_address') %>

<%= h @agent.ip_address %>

<%= t_label('agents.operating_system') %>

<%= h @agent.operating_system %>

<%= t_label('agents.cpu_information') %>

<%= h @agent.cpu_information %>

<%= t_label('agents.timezone') %>

<%= h @agent.time_zone %>

<%= label :agent, :no_password_enabled, t_label('agents.no_password_enabled'), :class => "description-label item-label" %>
<%= check_box :agent, :no_password_enabled, :disabled => @view_only, :class => "" %>

<%= t('agents.no_password_enabled_caption') %>

<%= label :agent, :connection_match_type, t_label('agents.agent_name_clustering'), :class => "description-label item-label" %>
<%= check_box :agent, :connection_match_type, :disabled => @view_only, :class => "" %>

<%= t('agents.agent_name_clustering_caption') %>

<% end %>