{% extends 'layout.html' %} {% block header %}

{% block title %} Account Details {% endblock %}

{% endblock %} {% block content %}
{% include 'banking/account_summary.html' %}
{% with transactions = account_transactions %} {% include 'banking/transactions_table/transactions.html' %} {% endwith %}
{% endblock %} {% block right_sidebar %} {% endblock %} {% block javascript %} {% endblock %}