Sha256: e37fd859f2e5ef584b68c526d87abedd65e1c22605776e35bb1a2e4ddf6a0934
Contents?: true
Size: 1.34 KB
Versions: 27
Compression:
Stored size: 1.34 KB
Contents
<fieldset id="action_fields" class="eight columns omega no-border-top"> <%= 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] } ) %> <fieldset> <legend align="center"><%= Spree.t(:promotion_actions) %></legend> <div class="field"> <%= label_tag :action_type, Spree.t(:add_action_of_type)%> <%= select_tag 'action_type', options, :class => 'select2 fullwidth' %> </div> <div class="filter-actions actions"> <%= button Spree.t(:add), 'plus' %> </div> </fieldset> <% end %> <%= form_for @promotion, :url => spree.admin_promotion_path(@promotion), :method => :put do |f| %> <div id="actions" class="filter_list"> <% if @promotion.actions.any? %> <%= render :partial => 'promotion_action', :collection => @promotion.actions %> <% else %> <div class="no-objects-found"> <%= Spree.t(:no_actions_added) %> </div> <% end %> </div> <div class="filter-actions actions promotion-update"> <%= button Spree.t('actions.update'), 'refresh' %> </div> <% end %> </fieldset>
Version data entries
27 entries across 27 versions & 2 rubygems