Sha256: 5ec5662747196191cf475369584b8bd8809fae2858f9539d3bde6db3e3cb191c
Contents?: true
Size: 1.49 KB
Versions: 29
Compression:
Stored size: 1.49 KB
Contents
<fieldset id="action_fields" class="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 {|action| [ action.model_name.human, action.name] } ) %> <fieldset> <legend align="center"><%= t('spree.promotion_actions') %></legend> <% if can?(:update, @promotion) %> <div class="field"> <%= label_tag :action_type, t('spree.adjustment_type')%> <%= select_tag 'action_type', options, include_blank: t(:choose_promotion_action, scope: 'spree'), class: 'custom-select fullwidth' %> </div> <div class="filter-actions actions"> <%= button_tag t('spree.actions.add'), class: 'btn btn-primary' %> </div> <% end %> </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"> <%= t('spree.no_actions_added') %> </div> <% end %> </div> <% if can?(:update, @promotion) %> <div class="filter-actions actions promotion-update"> <%= button_tag t('spree.actions.update'), class: 'btn btn-primary' %> </div> <% end %> <% end %> </fieldset>
Version data entries
29 entries across 29 versions & 2 rubygems