Sha256: 01c610cbd55fe6b044a56f37647fc63f55a4ad56214b81b73db73e95cb5510a5
Contents?: true
Size: 1.31 KB
Versions: 35
Compression:
Stored size: 1.31 KB
Contents
<div class="panel-heading"> <h1 class="panel-title"> <%= Spree.t(:promotion_actions) %> </h1> </div> <div id="action_fields" class="panel-body"> <%= form_tag spree.admin_promotion_promotion_actions_path(@promotion), :remote => true, :id => 'new_promotion_action_form' 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), 'plus', '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' %> </div> <% end %> </div>
Version data entries
35 entries across 35 versions & 2 rubygems