{% extends 'layout.html' %} {% 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 %}
{% with full_view = True %} {% include 'credit/transactions_table/transactions.html' %} {% endwith %}
{% endblock %} {% block javascript %} {% endblock %}