{% extends 'base.html' %} {% block title %}User Analysis - Yatra Booking System{% endblock %} {% block content %}
Manually test user registration, authentication, and profile management features.
| ID | Name | Phone | Role | Status | Email Verified | Created | |
|---|---|---|---|---|---|---|---|
| {{ user.id }} | {{ user.full_name }} | {{ user.email }} | {{ user.phone|default:"N/A" }} | {{ user.role.name }} | {{ user.status }} | {% if user.email_verified %} ✅ Verified {% else %} ❌ Not Verified {% endif %} | {{ user.created_at|date:"M d, Y" }} |
Your database doesn't contain any user records yet.
Users will appear here once they register through your application.