{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Customer Management - Gvelo Enterprise Platform{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform

Customer Management

{{ ui.button('Add Customer', '/add-customer') }}
{% for c in customers %}
{{ c[1] }} | {{ c[2] }}
⭐ Points: {{ c[3] }} | 💳 Credit: {{ currency_symbol }}{{ "%.2f"|format(c[4]) }}

{% endfor %}
Back to Admin
{% endblock %}