<% block = properties['options'] args = properties.except('options') collection = block.call(f.object) if collection.class.to_s.demodulize == 'ActiveRecord_Relation' properties['id_method'] ||= :id properties['name_method'] ||= :name collection = options_from_collection_for_select( collection, properties['id_method'], properties['name_method'], @resource_instance.try(attribute) ) elsif ['Hash', 'Array', 'HashWithIndifferentAccess'].include? collection.class.to_s.demodulize collection = options_for_select(collection, @resource_instance.try(attribute)) end %> <%= f.select attribute, collection, { include_blank: true }, args %> <% if !is_modal && ( properties['remote_resource'].nil? || properties['remote_resource'] ) %> <%= render( 'adminpanel/shared/create_remote_resource_button', belongs_request: true, remote_model: attribute.gsub('_id', '') ) %> <% end %>