{% extends "base.html" %} {% load staticfiles %} {% block site_title %} Home | Banks Project {% endblock site_title %} {% block title %} Home | Banks Project {% endblock title %} {% block body-id %}{% endblock %} {% block content %} {% load webdesign %}

Info

Bank

    {% for bank in banks_list %}
  • {{bank.name}}
  • {% endfor %}

Interest Rate

    {% for bank in banks_list %}
  • {{bank.interest_rate}}
  • {% endfor %}

Minimum Investment

    {% for bank in banks_list %}
  • ${{bank.lower_limit}}.00
  • {% endfor %}

Maximum Investment

    {% for bank in banks_list %}
  • ${{bank.upper_limit}}.00
  • {% endfor %}
You can add a new bank in the "Register" section.

Investment Suggestion

{% for user in examples %}

{{ user.name }}

    {% for bank, money in user.banks.items %}
  • {{bank}}: {{money}}
  • {% endfor %}
{% endfor %}
You can add a new investor in the "Register" section.
*In case there is an error message, the reason may be that there is not enough money to cover the minimum investment, or that it exceeds the maximum of all the selected banks.
{% endblock %}