{% extends "base.html" %} {% block content %}

Promo Rates

Coin-to-time mappings used by the captive portal. ₱1 is the default base rate — its values can be edited but it cannot be deactivated or deleted. Coin amounts are immutable across all rates so historical sales remain linkable.

{% if flash_msg %}
{{ flash_msg }}
{% endif %} {% if error_msg %}
{{ error_msg }}
{% endif %}

Existing Rates

{% if rates %}
{% for r in rates %} {% endfor %}
Coins Minutes Validity Name Status Actions
₱{{ r.coins }} {{ r.minutes }} min {{ r.validity_minutes }} min {{ r.name }} {% if r.locked %} default {% elif r.active %} active {% else %} inactive {% endif %} {% if not r.locked %}
{% endif %}
{% else %}
No rates configured.
Add one below to start accepting coins.
{% endif %}
{% endblock %}