{% extends 'admin/base.html' %} {% block title %}Subscribers{% endblock %} {% block page_title %}Subscribers Management{% endblock %} {% block content %}
{% if session.admin_role == 'super_admin' %} ➕ New POS Customer {% endif %}
{# NEW COLUMN #} {# Note: Changed 'subscribers.items' to 'subscribers' based on your route logic #} {% for s in subscribers %} {# NEW: Site Label #} {% else %} {% endfor %}
S/N Name SiteEmail Status Expiry Actions
{{ loop.index }} {{ s.first_name }} {{ s.surname }} {{ s.site.slug }} {{ s.email }} {{ s.payment_status }} {{ s.expiry_date.strftime('%d %b %Y') if s.expiry_date else '—' }}
{% if s.payment_status == 'active' %}
{% else %}
{% endif %}
{% if not s.mikrotik_added %}
{% endif %}
No subscribers found
{% endblock %}