{% extends "admin/layout.html" %} {% block title %}Customer Details - {{ customer.full_name }}{% endblock %} {% block content %}

Customer Details

{{ customer.full_name }}

Edit Customer ← Back to Customers

Personal Information

Full Name
{{ customer.full_name }}
Mobile
{{ customer.mobile }}
Email
{{ customer.email }}
Date of Joining
{{ customer.created_at.strftime('%d-%m-%Y %H:%M') if customer.created_at else 'N/A' }}
Status
{% if customer.is_active %} Active {% else %} Inactive {% endif %}

Reset Password

Subscriptions

{% if subscriptions %}
{% for subscription in subscriptions %} {% endfor %}
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
{% else %}

No subscriptions found for this customer.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}