Sha256: 6b45d3a8c8314b3862a9acad84f04c5859e533a45e744062004d7a9a7275f79f

Contents?: true

Size: 1.09 KB

Versions: 11

Compression:

Stored size: 1.09 KB

Contents

<div data-hook="admin_store_credit_form_fields" class="row">
  <div class="col-12">
    <%= f.field_container :amount do %>
      <%= f.label :amount, class: 'required' %><br />
      <%= render "spree/admin/shared/number_with_currency", f: f, amount_attr: :amount, currency_attr: :currency, required: true %>
      <%= f.error_message_on :amount %>
      <%= f.error_message_on :currency %>
    <% end %>
  </div>
  <div class="col-12">
    <%= f.field_container :category_id do %>
      <%= f.label :category_id, class: 'required' %><br />
      <%= f.select :category_id, options_from_collection_for_select(@credit_categories, :id, :name, f.object.category.try(:id)),
        { include_blank: true }, { class: 'custom-select fullwidth', placeholder: Spree.t("admin.store_credits.select_reason") } %>
      <%= f.error_message_on :category_id %>
    <% end %>
  </div>
  <div data-hook="admin_store_credit_memo_field" class="col-12">
    <%= f.field_container :memo do %>
      <%= f.label :memo %>
      <%= f.text_area :memo, class: "fullwidth" %>
      <%= f.error_message_on :memo %>
    <% end %>
  </div>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
solidus_backend-2.4.2 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.4.1 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.3.1 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.4.0 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.4.0.rc1 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.4.0.beta1 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.3.0 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.3.0.rc3 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.3.0.rc2 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.3.0.rc1 app/views/spree/admin/store_credits/_form.html.erb
solidus_backend-2.3.0.beta1 app/views/spree/admin/store_credits/_form.html.erb