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

Edit Account - {{ account.name }}

Back to Accounts
{{ form.hidden_tag() }}
{{ form.name() }} {% if form.name.errors %}
{{ form.name.errors[0] }}
{% endif %}
{{ form.holder_name() }} {% if form.holder_name.errors %}
{{ form.holder_name.errors[0] }}
{% endif %}
{{ form.account_number() }} {% if form.account_number.errors %}
{{ form.account_number.errors[0] }}
{% endif %}
{{ form.phone() }} {% if form.phone.errors %}
{{ form.phone.errors[0] }}
{% endif %}
{{ form.bank_name() }} {% if form.bank_name.errors %}
{{ form.bank_name.errors[0] }}
{% endif %}
{{ form.branch() }} {% if form.branch.errors %}
{{ form.branch.errors[0] }}
{% endif %}
{{ form.ifsc_swift() }} {% if form.ifsc_swift.errors %}
{{ form.ifsc_swift.errors[0] }}
{% endif %}
{{ form.opening_balance(step='0.01') }} {% if form.opening_balance.errors %}
{{ form.opening_balance.errors[0] }}
{% endif %} Note: Changing opening balance will affect account balance calculations
{{ form.type() }} {% if form.type.errors %}
{{ form.type.errors[0] }}
{% endif %}

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") }} {% if form.payment_instructions.errors %}
{{ form.payment_instructions.errors[0] }}
{% endif %} Instructions for customers making payments to this account
{{ form.note() }} {% if form.note.errors %}
{{ form.note.errors[0] }}
{% endif %}
{{ form.submit(class_='btn-primary') }} Cancel

⚠️ Important Notes

{% endblock %}