Sha256: cf86c0c099e205e465d7c32660f786fa323b897f3ddd423e9b0a1ee286e52611

Contents?: true

Size: 980 Bytes

Versions: 28

Compression:

Stored size: 980 Bytes

Contents

- in_section :transactions
- content_for :header do
  %h1="Order #{@order.id}"

.row
  .span3
    = render :partial => 'order_sidebar', :locals => { :order => @order, :person => @person, :total => @total }
  .span9
    - unless @order.all_items.empty?
      = render :partial => 'refunds/grouped_form', :locals => { :order => @order }
      = render :partial => 'exchanges/grouped_form', :locals => { :order => @order }
      = render :partial => 'returns/grouped_form', :locals => { :order => @order }

      = render :partial => 'item_table', :locals => { :order => @order, :is_child => false }

- unless @order.children.empty?
  - @order.children.each do |child|
    %hr
    .row
      .span3
        = render :partial => 'order_sidebar', :locals => { :order => child, :person => @person, :total => child.total, :work_with => false }
      .span9
        - unless child.items.empty?
          = render :partial => 'item_table', :locals => { :order => child, :is_child => true }

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
artfully_ose-1.2.0.pre.7 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre.6 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre.5 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre.4 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre.3 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre.2 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre.1 app/views/orders/show.html.haml
artfully_ose-1.2.0.pre app/views/orders/show.html.haml