{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
Business setup

Brand your MoMo reports

Set your business name, upload a logo, and define your opening wallet balances. These details appear across the dashboard and report exports.

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

Report preview

How your business appears

{% if profile.logo %} {{ profile.business_name|default:'Business' }} logo {% else %}
Logo
{% endif %}
{{ profile.business_name|default:'Business name will appear here' }} {{ profile.owner_label }} {{ request.user.email|default:'Email not set yet' }}
Opening e-cash{{ profile.opening_ecash }}
Opening physical cash{{ profile.opening_physical_cash }}
Current e-cash{{ profile.current_ecash }}
Current physical cash{{ profile.current_physical_cash }}

If you have not posted any transactions yet, saving this form also sets your starting current balances.

{% endblock %}