<div class="table-responsive">
<table class="display table table-striped table-bordered">
<thead>
<tr>
<th class="text-center" width="5%">#</th>
<th width="20%">N°</th>
<th>Date</th>
<th width="15%" class="text-center">Montant</th>
</tr>
</thead>
<tbody>
{% for accounting_student_registration_payment in registration_student_registration.accountingStudentRegistrationPayments %}
<tr>
<td class="text-center">{{ loop.index }}</td>
<td>{{ accounting_student_registration_payment.code }}</td>
<td>{{ accounting_student_registration_payment.createdAt ? accounting_student_registration_payment.createdAt|date('d/m/Y') }}</td>
<td class="text-center">{{ accounting_student_registration_payment.amount|number_format(0, ',', ' ') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>