User Reports

{% csrf_token %}

User Report Lists

{% if user_appointments %} {% for appoint in user_appointments %} {% endfor %}
Users Name Email Date Total Appointments Status Action
{{ appoint.seer_user__first_name }}{{ appoint.seer_user__last_name }}
{{ appoint.seer_user__email }} {{ appoint.seer_user__created_at|date:"d M Y" }} {{ appoint.total_appointments }} {% if appoint.seer_user__status == 1 %} Active {% else %} Inactive {% endif %}
{% else %}

No Data Found

{% endif %}