templates/accounting/accounting_student_registration_payment/_table.html.twig line 1

Open in your IDE?
  1. <div class="table-responsive">
  2.     <table class="display table table-striped table-bordered">
  3.         <thead>
  4.             <tr>
  5.                 <th class="text-center" width="5%">#</th>
  6.                 <th width="20%">N°</th>
  7.                 <th>Date</th>
  8.                 <th width="15%" class="text-center">Montant</th>
  9.             </tr>
  10.         </thead>
  11.         <tbody>
  12.         {% for accounting_student_registration_payment in registration_student_registration.accountingStudentRegistrationPayments %}
  13.             <tr>
  14.                 <td class="text-center">{{ loop.index }}</td>
  15.                 <td>{{ accounting_student_registration_payment.code }}</td>
  16.                 <td>{{ accounting_student_registration_payment.createdAt ? accounting_student_registration_payment.createdAt|date('d/m/Y') }}</td>
  17.                 <td class="text-center">{{ accounting_student_registration_payment.amount|number_format(0, ',', ' ') }}</td>
  18.             </tr>
  19.         {% endfor %}
  20.         </tbody>
  21.     </table>
  22. </div>