{% extends 'base.html' %} {% block title %}Payment Methods — Admin{% endblock %} {% block content %}
Admin Portal

Payment Methods

← Back to portal

Customers pay these Lipa Namba directly (outside the app) and you confirm payment manually once received — there's no payment gateway connected. Only active methods are shown to customers at checkout.

{% csrf_token %}
{% for m in methods %}
{{ m.provider_label }} {% if not m.is_active %}Inactive{% endif %}

{{ m.lipa_number }}

{% if m.account_name %}

{{ m.account_name }}

{% endif %} {% if m.instructions %}

{{ m.instructions }}

{% endif %}
{% csrf_token %}
{% empty %}

No payment methods added yet — add your first Lipa Namba above.

{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}