Sha256: d2ea194fabb3af67b8c5c08f35b54f2fa8b4cd2af98b2a39d2c5dc23fe8250a3
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
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)), { include_blank: true, }, { 'data-placeholder': 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?, selected: f.object.send(a).present? ? f.object.send(a).try(:id) : nil, } %>
Version data entries
6 entries across 6 versions & 1 rubygems