foodsoft/app/views/suppliers/index.haml

28 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-02-07 16:30:47 +01:00
- title t('.title')
- content_for :actionbar do
2013-02-07 16:30:47 +01:00
= link_to t('.action_new'), new_supplier_path, class: 'btn btn-primary'
= link_to t('.action_import'), shared_suppliers_suppliers_path, class: 'btn'
2012-10-17 20:45:52 +02:00
%table.table.table-striped
%thead
%tr
2013-02-07 16:30:47 +01:00
%th= t 'simple_form.labels.supplier.name'
%th= t 'simple_form.labels.supplier.phone'
%th= t 'simple_form.labels.supplier.customer_number'
2012-10-17 20:45:52 +02:00
%th
%th
%th
%tbody
- for supplier in @suppliers
2009-01-18 17:42:51 +01:00
%tr
2012-10-17 20:45:52 +02:00
%td= link_to h(supplier.name) , supplier
%td= supplier.phone
%td= supplier.customer_number
%td= link_to t('.articles', count: supplier.articles.undeleted.count), supplier_articles_path(supplier)
%td= link_to t('.stock', count: supplier.stock_articles.undeleted.count), stock_articles_path
2013-02-07 16:30:47 +01:00
%td= link_to t('.deliveries', count: supplier.deliveries.count), supplier_deliveries_path(supplier)
2012-10-17 20:45:52 +02:00
%td
2013-02-07 16:30:47 +01:00
= link_to t('ui.edit'), edit_supplier_path(supplier), class: 'btn btn-mini'
= link_to t('ui.delete'), supplier_path(supplier), method: :delete,
confirm: t('.confirm_del', name: supplier.name), class: 'btn btn-mini btn-danger'