{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Banking Details | Host in Sri Lanka{% endblock %} {% block content %}
Hosting Partner Payout Setup

Banking Details

Add or update your bank details so Ensolanka can prepare payout records for confirmed, delivered, and payable host event arrangements. These details are used only for payout and internal verification purposes.

Bank Account Information

Please keep your banking information accurate. Ensolanka may verify details before processing payout requests or manual transfers.

{% csrf_token %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}

Account Holder Details

Enter the exact name and bank account details for payout processing.

{{ form.account_holder_name }} {% for error in form.account_holder_name.errors %}
{{ error }}
{% endfor %}
{{ form.bank_name }} {% for error in form.bank_name.errors %}
{{ error }}
{% endfor %}
{{ form.branch_name }} {% for error in form.branch_name.errors %}
{{ error }}
{% endfor %}
{{ form.account_number }} {% for error in form.account_number.errors %}
{{ error }}
{% endfor %}

International / Transfer Details

These fields are optional, but useful if international transfer details are required.

{{ form.iban }} {% for error in form.iban.errors %}
{{ error }}
{% endfor %}
{{ form.swift_code }} {% for error in form.swift_code.errors %}
{{ error }}
{% endfor %}
{{ form.bank_country }} {% for error in form.bank_country.errors %}
{{ error }}
{% endfor %}
{{ form.bank_address }} {% for error in form.bank_address.errors %}
{{ error }}
{% endfor %}

Payout Notes

Add optional payout instructions or notes for the Ensolanka team.

{{ form.payment_notes }} {% if form.payment_notes.help_text %} {{ form.payment_notes.help_text }} {% endif %} {% for error in form.payment_notes.errors %}
{{ error }}
{% endfor %}
Security note: Please ensure that the account details belong to the correct hosting partner or authorized business. Ensolanka may request additional verification before payout.
Back to Profile

Verification Status

Banking verification is handled by the Ensolanka admin team.

Current Status {% if banking_details.is_verified %}
Verified
{% else %}
Pending Verification
{% endif %}
Hosting Partner {{ host_profile.business_name }}
Last Updated {{ banking_details.updated_at|date:"M d, Y" }}
{% if banking_details.admin_review_note %}
Admin Note:
{{ banking_details.admin_review_note }}
{% endif %}

Payout Readiness Tips

Accurate details reduce delays when events are completed and payouts are prepared.

  • Use the exact account holder name registered with your bank.
  • Double-check account number, branch name, and bank name before saving.
  • Add SWIFT or IBAN details only if they are required for your payout method.
  • If your payout should be made to a business account, mention relevant notes clearly.
  • Ensolanka may verify payout details before transferring funds.
Important: This banking page is for host payout readiness. Guests do not see your banking details.

Quick Links

Continue managing your hosting account.

{% endblock %}