{% extends "base.html" %} {% block title %}Profile — ICH Screening{% endblock %} {% block content %}
{% if user.avatar_url %} User avatar {% else %}
{{ user.username[0].upper() }}
{% endif %}

{{ user.full_name or user.username }}

{{ user.email }}
Member since {{ user.created_at.strftime('%B %Y') }}

Account Information

Username {{ user.username }}
Email {{ user.email }}
Full Name {{ user.full_name or '' }}
Account Status Active
Member Since {{ user.created_at.strftime('%B %d, %Y') }}

Security

Account Actions

{% endblock %} {% block scripts %} {% endblock %}