Sha256: 3e3d84a25c6f594fe877ad472bbb885ea8a1d811780e2fa51212f0468112b31f
Contents?: true
Size: 1.07 KB
Versions: 9
Compression:
Stored size: 1.07 KB
Contents
<%= turbo_frame_tag 'attach_modal' do %> <%= form_with scope: 'fields', url: "#{avo.root_path}resources/#{params[:resource_name]}/#{params[:id]}/#{params[:related_name]}/", data: { 'turbo-frame': '_top' } do |form| %> <%= render Avo::ModalComponent.new do |c| %> <% c.heading do %> <%= t 'avo.choose_item', item: params[:related_name].downcase %> <% end %> <div class="flex-1 flex items-center justify-center px-8 text-lg mt-8 mb-12"> <div class="flex-1 flex flex-col items-center justify-center px-24 text-base"> <%= form.select :related_id, options_for_select(@options, nil), { include_blank: t('avo.choose_an_option'), }, { class: input_classes('w-full'), } %> </div> </div> <% c.controls do %> <%= a_button t('avo.cancel'), 'data-action': 'click->modal#close', size: :sm %> <%= a_button t('avo.attach'), type: :submit, color: :green, size: :sm %> <% end %> <% end %> <% end %> <% end %>
Version data entries
9 entries across 9 versions & 1 rubygems