Sha256: 84ed21a77a7d23f6021f07302434fe36f18c23566f55b6d2d33142fc50a2eac4

Contents?: true

Size: 1.25 KB

Versions: 16

Compression:

Stored size: 1.25 KB

Contents

<%= alchemy_form_for resource_instance_variable, url: resource_path(resource_instance_variable, search_filter_params) do |f| %>
  <% resource_handler.editable_attributes.each do |attribute| %>
    <% if relation = attribute[:relation] %>
      <%= f.association relation[:name].to_sym,
        collection: relation[:collection],
        label_method: relation[:attr_method],
        include_blank: Alchemy.t(:blank, scope: 'resources.relation_select'),
        input_html: {is: 'alchemy-select'} %>
    <% elsif attribute[:type].in? %i[date time datetime] %>
      <%= f.datepicker attribute[:name], resource_attribute_field_options(attribute) %>
    <% elsif attribute[:enum].present? %>
      <%= f.input attribute[:name],
        collection: attribute[:enum],
        include_blank: Alchemy.t(:blank, scope: 'resources.relation_select'),
        input_html: {is: 'alchemy-select'} %>
    <% else %>
      <%= f.input attribute[:name], resource_attribute_field_options(attribute) %>
    <% end %>
  <% end %>
  <% if f.object.respond_to?(:tag_list) %>
    <div class="input string autocomplete_tag_list">
      <%= f.label :tag_list %>
      <%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
    </div>
  <% end %>
  <%= f.submit Alchemy.t(:save) %>
<% end %>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
alchemy_cms-7.1.12 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.11 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.10 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.9 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.8 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.7 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.6 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.5 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.4 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.3 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.2 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.1 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.0 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.0.pre.rc1 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.0.pre.b2 app/views/alchemy/admin/resources/_form.html.erb
alchemy_cms-7.1.0.pre.b1 app/views/alchemy/admin/resources/_form.html.erb