app/views/actions/get/_show.html.haml in artfully_ose-1.2.0.beta.1 vs app/views/actions/get/_show.html.haml in artfully_ose-1.2.0.pre
- old
+ new
@@ -1,3 +1,14 @@
-=render :partial => "actions/shared/show", :locals => { :action => action }
+%p
+ =render :partial => "actions/shared/show", :locals => { :action => action }
-%p= link_to "View order details <i class='fa fa-share'></i>".html_safe, order_path(action.subject)
+
+%ul
+ - action.subject.items.each do |item|
+ %li #{number_as_cents(item.price)} - #{item.order_summary_description}
+ %li
+ %strong #{number_as_cents(action.subject.total||0)} - Total
+ - if action.subject.notes.present?
+ %li
+ %strong Note:
+ = action.subject.notes
+%p= link_to "View order details <i class='icon-share-alt'></i>".html_safe, order_path(action.subject)
\ No newline at end of file