% admin_breadcrumb(plural_resource_name(Spree::Promotion)) %> <% content_for :page_actions do %> <% if can? :create, Spree::Promotion %>
<%= Spree::Promotion.human_attribute_name(:name) %> | <%= Spree::Promotion.human_attribute_name(:code) %> | <%= Spree::Promotion.human_attribute_name(:description) %> | <%= Spree::Promotion.human_attribute_name(:usage_limit) %> | <%= Spree::Promotion.human_attribute_name(:promotion_uses) %> | <%= Spree::Promotion.human_attribute_name(:expires_at) %> | |
---|---|---|---|---|---|---|
<%= promotion.name %> | <%= (promotion.codes.size == 1) ? promotion.codes.first.try!(:value) : Spree.t(:number_of_codes, count: promotion.codes.size) %> | <%= promotion.description %> | <%= promotion.usage_limit.nil? ? "∞" : promotion.usage_limit %> | <%= Spree.t(:current_promotion_usage, :count => promotion.usage_count) %> | <%= promotion.expires_at.to_date.to_s(:short_date) if promotion.expires_at %> | <% if can?(:edit, promotion) %> <%= link_to_edit promotion, :no_text => true %> <% end %> <% if can?(:destroy, promotion) %> <%= link_to_delete promotion, :no_text => true %> <% end %> |