{% extends "admin/layout.html" %} {% block title %}Customer Details - {{ customer.full_name }}{% endblock %} {% block content %}
{{ customer.full_name }}
| Product | Start Date | End Date | Status | Actions |
|---|---|---|---|---|
| {{ subscription.product.name if subscription.product else 'N/A' }} | {{ subscription.start_date.strftime('%d-%m-%Y') if subscription.start_date else 'N/A' }} | {{ subscription.end_date.strftime('%d-%m-%Y') if subscription.end_date else 'N/A' }} | {% if subscription.status == 'active' %} Active {% elif subscription.status == 'pending' %} Pending {% else %} {{ subscription.status|upper }} {% endif %} | View |
No subscriptions found for this customer.