Ekdant-Online-Store/admininistrator/view/template/sale/subscription_history.twig
2024-08-06 18:06:00 +05:45

33 lines
1.0 KiB
Twig

<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<td class="text-start">{{ column_date_added }}</td>
<td class="text-start">{{ column_comment }}</td>
<td class="text-start">{{ column_status }}</td>
<td class="text-start">{{ column_notify }}</td>
</tr>
</thead>
<tbody>
{% if histories %}
{% for history in histories %}
<tr>
<td class="text-start">{{ history.date_added }}</td>
<td class="text-start">{{ history.comment }}</td>
<td class="text-start">{{ history.status }}</td>
<td class="text-start">{{ history.notify }}</td>
</tr>
{% endfor %}
{% else %}
<tr>
<td class="text-center" colspan="4">{{ text_no_results }}</td>
</tr>
{% endif %}
</tbody>
</table>
</div>
<div class="row">
<div class="col-sm-6 text-start">{{ pagination }}</div>
<div class="col-sm-6 text-end">{{ results }}</div>
</div>