Sha256: 2ac018b3909c0ae673f003b233a204b7ce2932c99f672062803e7549db0ebf69
Contents?: true
Size: 1.2 KB
Versions: 35
Compression:
Stored size: 1.2 KB
Contents
<%= turbo_frame_tag 'attach_modal' do %> <%= form_with scope: 'fields', url: "/avo/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.map { |o| [o[:label], o[:value]] }, nil), { include_blank: t('avo.choose_an_option'), }, { class: input_classes('w-full'), } %> </div> </div> <%#= form.hidden_field :resource_ids, value: params[:resource_ids], 'data-action-target': 'resourceIds' %> <% 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
35 entries across 35 versions & 1 rubygems