{% extends 'base.html' %} {% block title %}Record Payment{% endblock %} {% block page_title %}Record Payment{% endblock %} {% block content %}
Guest: {{ booking.guest.full_name }}
Room: {{ booking.room.hotel.name }} — {{ booking.room.room_number }}
Total: TSh {{ booking.total_amount|floatformat:0 }}
Balance: TSh {{ booking.get_balance|floatformat:0 }}
Payment Details
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.amount_paid }} {% if form.amount_paid.errors %}
{{ form.amount_paid.errors }}
{% endif %}
{{ form.payment_method }}
{{ form.transaction_reference }}
e.g. M-Pesa reference, card approval code
{{ form.notes }}
Cancel
{% endblock %}