12_generate_custom_csv_file #58

Open
philipp wants to merge 59 commits from 12_generate_custom_csv_file into develop
Showing only changes of commit a7a0830d43 - Show all commits

View file

@ -33,7 +33,7 @@
%td= order.name %td= order.name
%td= format_date(order.pickup) unless order.pickup.nil? %td= format_date(order.pickup) unless order.pickup.nil?
%td= format_time(order.ends) unless order.ends.nil? %td= format_time(order.ends) unless order.ends.nil?
%td= truncate(order.note) %td= truncate(order.note, length: 25, tooltip: true)
%td= link_to t('.action_end'), finish_order_path(order), %td= link_to t('.action_end'), finish_order_path(order),
data: {confirm: t('.confirm_end', order: order.name)}, method: :post, data: {confirm: t('.confirm_end', order: order.name)}, method: :post,
class: 'btn btn-small btn-success' class: 'btn btn-small btn-success'