Sha256: b4f05740377e9effdfd8cd74e901538e4051da548b84ae1f783e8b1ad423f3ab
Contents?: true
Size: 664 Bytes
Versions: 16
Compression:
Stored size: 664 Bytes
Contents
<%= simple_form_for(@bulk_action) do |f| %> <%= f.error_notification %> <%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %> <div class="form-inputs"> <%= f.input :name, hint: "Short description" %> <%= f.input :scope, hint: "Result Set Query", input_html: { value: params[:scope] } %> <%= f.input :field_name, collection: bulk_actions_collection, hint: "Field" %> <%= f.input :field_value, hint: "New Field Value" %> <%= f.input :notes, hint: "Longer description" %> </div> <div class="form-actions"> <%= f.button :submit, {class: 'btn btn-primary'} %> </div> <% end %>
Version data entries
16 entries across 16 versions & 1 rubygems