cirandas.net

ref: master

plugins/products/views/products_plugin/page/index.html.erb


<%=_('Listing products and services') %>

<% if @products.empty? %> <% end %> <% @products.each do |product| %> <% end %>
<%= _('Product') %> <%= _('Price') + " (#{environment.currency_unit})" %> <%= _('Actions') %>
<%= _('(no product registered yet)') %>
<%= link_to product.name, :action => 'show', :id => product %> <%= float_to_currency product.price, unit: '' %> <%= button :delete, _('Remove'), {action: 'destroy', id: product}, data: {confirm: _('Are you sure you want to remove this product?')} %>
<%= pagination_links @products %> <%= button_bar do %> <%= button :add, _('New product or service'), :action => 'new' if @profile.create_product? %> <%= button :back, _('Back'), { :controller => 'profile_editor', :profile => @profile.identifier, :action => 'index' } %> <% end %>