{% extends 'core/base.html' %} {% load currency_filters %} {% load static %} {% block title %}Pay Supplier — {{ supplier.name }}{% endblock %} {% block topbar_title %}Record Payment{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Pay Supplier
{{ supplier.name }}
Total Purchased {% money total_purchased %}
Total Paid {% money total_paid %}
Outstanding Balance {% money balance %}
{% if prefill_po %}
This payment is for Purchase Order #{{ prefill_po }}. Amount pre-filled below.
{% endif %}
{% csrf_token %}
{{ currency_symbol|default:"₦" }}
{% if balance and balance > 0 %} {% endif %} {% if prefill_amount and prefill_amount != balance|stringformat:"s" %} {% endif %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}