<%= _('Product') %> | <%= _('Price') %> | <%= _('Actions') %> |
---|---|---|
<%= _('(no product registered yet)') %> | ||
<%= link_to product.name, :action => 'show', :id => product %> | <%= product.price %> | <%= button :edit, _('Edit'), :action => 'edit', :id => product %> <%= button :delete, _('Destroy'), :action => 'destroy', :id => product %> |
<%= _('Raw material') %> | <%= _('Actions') %> | |
---|---|---|
<%= _('(no raw material registered yet)') %> | ||
<%= link_to_product_category(consumption.product_category) %>
<%= consumption.aditional_specifications %> |
<%= button :edit, _('Edit'), :action => 'edit_consumption', :id => consumption %> <%= button :delete, _('Remove'), { :action => 'destroy_consumption', :id => consumption }, :confirm => _('Are you sure, you want to remove this raw material from your list') %> |