{% extends "layout.html" %} {% block title %}{{ user.username }} - Flask MVC App{% endblock %} {% block content %}

{{ user.full_name or user.username }}

{{ user.id }}
{{ user.username }}
{{ user.email }}
{{ user.first_name or 'N/A' }}
{{ user.last_name or 'N/A' }}
{{ 'Active' if user.is_active else 'Inactive' }}
{{ user.created_at or 'N/A' }}
{{ user.updated_at or 'N/A' }}
{% endblock %}