<% admin_breadcrumb link_to plural_resource_name(Spree::Promotion), spree.admin_promotions_path %> <% admin_breadcrumb link_to(@promotion.name, spree.edit_admin_promotion_path(@promotion)) %> <% admin_breadcrumb plural_resource_name(Spree::PromotionCode) %> <% content_for :page_actions do %>
  • <%= link_to t('spree.view_promotion_codes_list'), admin_promotion_promotion_codes_path(promotion_id: @promotion.id), class: 'btn btn-primary' %> <%= link_to t('spree.download_promotion_codes_list'), admin_promotion_promotion_codes_path(promotion_id: @promotion.id, format: :csv), class: 'btn btn-primary' %>
  • <% end %> <%= form_for [:admin, @promotion, @promotion_code], method: :post do |f| %>
    <%= render partial: 'spree/shared/error_messages', locals: { target: @promotion_code } %>
    <%= f.field_container :value do %> <%= f.label :value, class: 'required' %> <%= f.text_field :value, class: 'fullwidth', required: true %> <% end %>
    <%= f.submit t('spree.actions.create'), class: 'btn btn-primary' %> <%= link_to t('spree.actions.cancel'), admin_promotion_promotion_codes_url(@promotion), class: 'button' %>
    <% end %>