{% extends "saas/base.html" %} {% load saas_tags %} {% block saas_content %} {{organization.full_name}} Active Subscribers Subscriber Plan Since Ends At {% for subscriber in subscribers %} {{subscriber.full_name}} {% for subscription in subscriber|active_with_provider:organization %} {{subscription.plan.title}} {{subscription.created_at|date:"d M Y"}} {{subscription.ends_at|date:"d M Y"}} {% csrf_token %} Unsubscribe Now {% endfor %} {% empty %} No Subscribers {% endfor %} {% include "paginator.html" %} {% endblock %}