Sha256: 3877ee190883687955a03ee5dce3cc311b73e08fbda89603a7720beef8762856
Contents?: true
Size: 1.84 KB
Versions: 4
Compression:
Stored size: 1.84 KB
Contents
<fieldset id="rule_fields" class ="no-border-bottom no-border-top"> <%= form_tag spree.admin_promotion_promotion_rules_path(@promotion), :remote => true, :id => 'new_product_rule_form' do %> <fieldset> <legend align="center"><%= Spree.t(:rules) %></legend> <% if can?(:update, @promotion) %> <div class="field"> <%= label_tag :promotion_rule_type, Spree.t(:add_rule_of_type) %> <%= select_tag('promotion_rule[type]', options_for_promotion_rule_types(@promotion), :class => 'select2 fullwidth') %> </div> <div class="filter-actions actions"> <%= button Spree.t('actions.add') %> </div> <% end %> </fieldset> <% end %> <%= form_for @promotion, :url => object_url, :method => :put do |f| %> <fieldset class="no-border-top"> <div id="promotion-pilicy-select" class="align-center row"> <% Spree::Promotion::MATCH_POLICIES.each do |policy| %> <div class="col-xs-6"> <label><%= f.radio_button :match_policy, policy %> <%= Spree.t "promotion_form.match_policies.#{policy}" %></label> </div> <% end %> </div> <div id="rules" class="filter_list"> <% if @promotion.rules.any? %> <div class="col-xs-12"> <div class="row"> <%= render :partial => 'promotion_rule', :collection => @promotion.rules, :locals => {} %> </div> </div> <% else %> <div class="no-objects-found"> <%= Spree.t(:no_rules_added) %> </div> <% end %> </div> <% if can?(:update, @promotion) %> <div class="promotion-update filter-actions actions"> <%= button Spree.t('actions.update') %> </div> <% end %> </fieldset> <% end %> </fieldset>
Version data entries
4 entries across 4 versions & 1 rubygems