{% extends 'layout.html' %} {% set full_view = True %} {% block left_sidebar %} {% endblock %} {% block header %}

{% block title %}Credit Transactions{% endblock %}

{% endblock %} {% block content %}
{% for card in filter_cards %} {{ card.account.bank.bank_name }} (-{{card.last_four_digits }}) {% endfor %}
{% include 'credit/transactions_table/table.html' %} {% if transactions|length < total_transactions %}
Load more transactions
{% endif %}
{% endblock %} {% block javascript %} {% endblock %}