Name
{{ subscriber.first_name }} {{ subscriber.surname }}
Email
{{ subscriber.email }}
Status
{% if subscriber.payment_status == 'active' %}
โ Active
{% elif subscriber.payment_status == 'expired' %}
โ Expired
{% else %}
โ {{ subscriber.payment_status | capitalize }}
{% endif %}
{% if subscriber.expiry_date %}
Expires On
{{ subscriber.expiry_date.strftime('%d %b %Y') }}
Status
{% if subscriber.payment_status == 'active' %}
Active until {{ subscriber.expiry_date.strftime('%d %b %Y') }}
{% else %}
Expired
{% endif %}
{% endif %}
{% if subscriber.last_payment %}
Last Payment
{{ subscriber.last_payment.strftime('%d %b %Y') }}
{% endif %}
๐ถ WiFi Login Credentials
Username
{{ subscriber.email }}
Password
Your registration password
Use these on the MikroTik hotspot login page.
{% if subscriber.payment_status != 'active' %}
๐ Renew Subscription โ โฆ{{ "{:,.0f}".format(site.amount_kobo / 100) }}
{% else %}
๐ Renew Early โ โฆ{{ "{:,.0f}".format(site.amount_kobo / 100) }}
{% endif %}
โ Back to login