{% extends 'base.html' %} {% block content %}

New Account

{{ form.hidden_tag() }}
{{ form.name() }}
{{ form.holder_name() }}
{{ form.account_number() }}
{{ form.phone() }}
{{ form.bank_name() }}
{{ form.branch() }}
{{ form.ifsc_swift() }}
{{ form.opening_balance(step='0.01') }}
{{ form.type() }}

Online Payment Settings

{% for choice in form.is_online_payment_enabled %} {% endfor %}
If enabled, customers can see this account for online payments
{{ form.payment_instructions(placeholder="e.g., Please include your name in payment description") }} Instructions for customers making payments to this account
{{ form.note() }}
{{ form.submit(class_='btn-primary') }}
{% endblock %}