Sha256: 0587d05fe833c94d1bcc01e149348f78a958c1cf242d63741b6f5b24b8efdb1c
Contents?: true
Size: 917 Bytes
Versions: 4
Compression:
Stored size: 917 Bytes
Contents
<%= f.label a, class: "form-control-label #{required?(f.object, a).present? ? 'required' : ''}" %> <%= render 'slash_admin/shared/tooltip', a: a %> <%= f.collection_select a.to_s + '_id', class_name_from_association(f.object, a).constantize.all.order(f.object.send(a).present? ? "CASE WHEN id = #{f.object.send(a).try(:id)} THEN 1 ELSE 0 END DESC" : "id DESC").limit(20), :id, object_label(class_name_from_association(f.object, a)), { prompt: t('slash_admin.view.select_model', model_name: class_name_from_association(f.object, a).constantize.model_name.human.downcase), }, 'data-model': class_name_from_association(f.object, a).constantize.model_name.to_s.underscore, 'data-fields': "SlashAdmin::Models::#{class_name_from_association(f.object, a).classify.pluralize}Controller".constantize.new.autocomplete_params.join(' '), class: 'form-control select2-model-single', required: required?(f.object, a).present? %>
Version data entries
4 entries across 4 versions & 1 rubygems