Monkey Albino

Linux altar53.supremepanel53.com 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
/ home/ bdapparelinfo/ dhakazone.com/ admin/ view/ template/ sale/

/home/bdapparelinfo/dhakazone.com/admin/view/template/sale/return_history.twig

{% if error %}
<div class="alert alert-danger alert-dismissible">{{ error }}</div>
{% endif %}
{% if success %}
<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> {{ success }}
  <button type="button" class="close" data-dismiss="alert">&times;</button>
</div>
{% endif %}
<table class="table table-bordered">
  <thead>
    <tr>
      <td class="text-left">{{ column_date_added }}</td>
      <td class="text-left">{{ column_comment }}</td>
      <td class="text-left">{{ column_status }}</td>
      <td class="text-left">{{ column_notify }}</td>
    </tr>
  </thead>
  <tbody>
    {% if histories %}
    {% for history in histories %}
    <tr>
      <td class="text-left">{{ history.date_added }}</td>
      <td class="text-left">{{ history.comment }}</td>
      <td class="text-left">{{ history.status }}</td>
      <td class="text-left">{{ history.notify }}</td>
    </tr>
    {% endfor %}
    {% else %}
    <tr>
      <td class="text-center" colspan="4">{{ text_no_results }}</td>
    </tr>
    {% endif %}
  </tbody>
</table>
<div class="row">
  <div class="col-sm-6 text-left">{{ pagination }}</div>
  <div class="col-sm-6 text-right">{{ results }}</div>
</div>