{% extends "base.html" %} {% block title %}{{ profile_user.username }}'s Profile - ArchCNTL{% endblock %} {% block main_content %}

{{ profile_user.username }}

{# --- Profile Info (Avatar, Name, Bio) --- #}
{# --- Avatar Section --- #}
{% if profile_user.profile_picture == 'default_avatar.png' %}
{% else %} Profile Picture {% endif %}
{# --- Name, Pronouns, Email --- #}

{{ profile_user.username }}

{% if profile_user.pronouns %} {{ profile_user.pronouns }} {% endif %} {{ profile_user.email }}
{# --- Bio --- #}
{% if profile_user.bio %}

"{{ profile_user.bio }}"

{% else %}

System operator has not provided a status update.

{% endif %}
{# --- Edit Profile Button and Modal Structure --- #} {% if is_owner %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}