Sha256: 3f00763ba23ebfee02874d8502b318fdc6ddbf52ed6246c4ada744c9dc851c20
Contents?: true
Size: 1.31 KB
Versions: 5
Compression:
Stored size: 1.31 KB
Contents
<div class="card-header"> <h1 class="card-title mb-0 h5"> <%= Spree.t(:promotion_actions) %> </h1> </div> <div id="action_fields" class="card-body"> <%= form_tag spree.admin_promotion_promotion_actions_path(@promotion), remote: true, id: 'new_promotion_action_form', class: 'mb-3' do %> <% options = options_for_select( Rails.application.config.spree.promotions.actions.map(&:name).map {|name| [ Spree.t("promotion_action_types.#{name.demodulize.underscore}.name"), name] } ) %> <div class="form-group"> <%= label_tag :action_type, Spree.t(:add_action_of_type)%> <%= select_tag 'action_type', options, class: 'select2' %> </div> <div class="form-actions"> <%= button Spree.t(:add), 'add.svg', 'submit', class: "btn-success" %> </div> <% end %> <%= form_for @promotion, url: spree.admin_promotion_path(@promotion), method: :put do |f| %> <div id="actions" class="filter_list margint"> <% if @promotion.actions.any? %> <%= render partial: 'promotion_action', collection: @promotion.actions %> <% else %> <div class="alert alert-warning"> <%= Spree.t(:no_actions_added) %> </div> <% end %> </div> <div class="actions promotion-update"> <%= button Spree.t('actions.update'), 'save.svg' %> </div> <% end %> </div>
Version data entries
5 entries across 5 versions & 1 rubygems