Sha256: d453c71b840bbe4d9bb391fa95f3f156053564606c0490b953b7cad5fac93467
Contents?: true
Size: 854 Bytes
Versions: 72
Compression:
Stored size: 854 Bytes
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, label_method: relation[:attr_method], include_blank: Alchemy.t(:blank, scope: 'resources.relation_select'), input_html: {class: 'alchemy_selectbox'} %> <% 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
72 entries across 72 versions & 1 rubygems