{% extends 'base.html' %} {% block title %}{{ title }} - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}
Back to Expenses

{{ title }}

{% csrf_token %} {% if form.non_field_errors %}
⚠️

{{ form.non_field_errors }}

{% endif %}

Basic Information

{{ form.title }} {% if form.title.errors %}

{{ form.title.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{{ form.category }} {% if form.category.errors %}

{{ form.category.errors.0 }}

{% endif %}
{{ form.expense_date }} {% if form.expense_date.errors %}

{{ form.expense_date.errors.0 }}

{% endif %}

Financial Details

{{ form.amount }} {% if form.amount.errors %}

{{ form.amount.errors.0 }}

{% endif %}
{{ form.payment_method }} {% if form.payment_method.errors %}

{{ form.payment_method.errors.0 }}

{% endif %}
{{ form.paid_to }} {% if form.paid_to.errors %}

{{ form.paid_to.errors.0 }}

{% endif %}
{{ form.reference_number }} {% if form.reference_number.errors %}

{{ form.reference_number.errors.0 }}

{% endif %}

Relationships

{{ form.branch }} {% if form.branch.errors %}

{{ form.branch.errors.0 }}

{% endif %}
{{ form.loan }} {% if form.loan.errors %}

{{ form.loan.errors.0 }}

{% endif %}

Select if this expense is related to a specific loan

Documentation

{{ form.receipt_path }} {% if form.receipt_path.errors %}

{{ form.receipt_path.errors.0 }}

{% endif %}

Upload receipt or supporting document (PDF, Image)

{% if expense and expense.receipt_path %} {% endif %}
{{ form.notes }} {% if form.notes.errors %}

{{ form.notes.errors.0 }}

{% endif %}
Cancel
{% endblock %}