<% if @agent.new_record? %>
<%= f.label :type %>
<%= f.select :type, options_for_select(Agent.types.map(&:to_s).sort.map {|type| [type.gsub(/^.*::/, ''), type] }, @agent.type), {}, :class => 'select2 form-control' %>
<% end %>
<%= f.label :name %>
<%= f.text_field :name, :class => 'form-control' %>