51 lines
845 B
Plaintext
Executable File
51 lines
845 B
Plaintext
Executable File
%h1 Liste des demandes de virements
|
|
|
|
|
|
=form_for [:admin, @virement_remise] do |f|
|
|
|
|
%table.table.table-hover.table_bordered
|
|
%thead#virement_rows_header.rows_header
|
|
|
|
%tr
|
|
%th
|
|
%th
|
|
Date
|
|
|
|
|
|
%th
|
|
Banque
|
|
|
|
%th Nom du titulaire du compte
|
|
|
|
%th Pays
|
|
%th Iban
|
|
%th BIC
|
|
%th Numéro de TVA
|
|
%th Solde des commissions
|
|
%th Montant du virement
|
|
%th Montant TTC
|
|
%th Montant de la commission associé
|
|
%th Envoyé ?
|
|
%th{:style => "width:100px"}
|
|
|
|
|
|
|
|
|
|
|
|
%tbody#virement_rows.rows
|
|
|
|
=render :partial => "admin/virements/virement",:collection => @virements, :locals => {:f => f}
|
|
|
|
|
|
|
|
=f.submit "Créer une remise", :class => "btn btn-primary"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|