{% extends "base.html" %} {% block title %}Profile - {{ app_name }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
User Profile

{{ user.full_name }}

{% if user.is_admin %} Administrator {% endif %}
{{ user.username }}
{{ user.email }}
{% if user.first_name %}
{{ user.first_name }}
{% endif %} {% if user.last_name %}
{{ user.last_name }}
{% endif %}
{% if user.is_active %} Active {% else %} Inactive {% endif %}
{{ user.created_at.strftime('%B %d, %Y') if user.created_at else 'Unknown' }}
{% if user.last_login %}
{{ user.last_login.strftime('%B %d, %Y at %I:%M %p') }}
{% endif %} {% if user.groups %}
{% for group in user.groups %} {{ group.name }} {% endfor %}
{% endif %}
You can update your profile information and change your password.
{% endblock %}