{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
Transaction input

Record a new cash movement

Choose a transaction type and MoMoLedger applies the wallet movement rules for you. Defaults: Debt and Expenditure reduce physical cash, while Credit increases physical cash.

{% csrf_token %}
{% for field in form %}
{{ field }} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}

Current wallet state

{{ profile.business_name }}

E-cash available{{ profile.current_ecash }}
Physical cash available{{ profile.current_physical_cash }}
Cash-Ine-cash − amount, physical cash + amount
Cash-outphysical cash − amount, e-cash + amount
Sendinge-cash − amount, physical cash + amount + 1% fee
Airtime / Transfere-cash − amount, physical cash + amount
{% endblock %}