{{ header }} 
{% include 'fastor/template/new_elements/wrapper_top.twig' %}

<p>{{ text_total }} <b>{{ total }}</b>.</p>
<div class="table-responsive">
  <table class="table table-bordered table-hover">
    <thead>
      <tr>
        <td class="text-left">{{ column_date_added }}</td>
        <td class="text-left">{{ column_description }}</td>
        <td class="text-right">{{ column_amount }}</td>
      </tr>
    </thead>
    <tbody>
    
    {% if transactions %}
    {% for transaction in transactions %}
    <tr>
      <td class="text-left">{{ transaction.date_added }}</td>
      <td class="text-left">{{ transaction.description }}</td>
      <td class="text-right">{{ transaction.amount }}</td>
    </tr>
    {% endfor %}
    {% else %}
    <tr>
      <td class="text-center" colspan="5">{{ text_empty }}</td>
    </tr>
    {% endif %}
      </tbody>
    
  </table>
</div>
<div class="row">
  <div class="col-sm-6 text-left">{{ pagination }}</div>
  <div class="col-sm-6 text-right">{{ results }}</div>
</div>
<div class="buttons clearfix">
  <div class="pull-right"><a href="{{ continue }}" class="btn btn-primary">{{ button_continue }}</a></div>
</div>
      
{% include 'fastor/template/new_elements/wrapper_bottom.twig' %}
{{ footer }}