This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/views/admin/tva_rates/_tva_rate.html.haml
2021-08-23 10:26:02 +02:00

19 lines
642 B
Plaintext

%tr#tva_rate_row{:id => tva_rate.id}
%td= ic(:check) if tva_rate.enabled
%td= tva_rate.name
%td= tva_rate.description
%td= tva_rate.accounting_zone.name if tva_rate.accounting_zone
%td= tva_rate.rate
%td= tva_rate.purchase_account
%td= tva_rate.sale_account
%td= tva_rate.sale_product_account
%td.actions
= link_to i(:"trash-o"), [:admin, tva_rate], method: :delete, data: { confirm: 'Voulez-vous vraiment supprimer cet enregistrement ? ' } , :remote => true
= link_to i(:pencil), edit_admin_tva_rate_path(tva_rate), :remote => true
= link_to i(:eye), admin_tva_rate_path(tva_rate), :remote => true