{{ user.username }} {% if user.username == 'avery' %}
👑
🛡️
🛠️
⭐
🪳
{% elif user.username == 'asd' %}
🧪
⭐
🪳
{% elif user.username == 'sqtt' %}
⭐
🪳
{% elif user.username == 'Andrecon' %}
⭐
{% endif %}
Joined: {{ user.created_at.strftime('%B %d, %Y') }}
{% if session.user_id == user.id %}
Change Profile Picture
Change Banner
{% endif %}
Tweets
{% for tweet in tweets %}
{{ user.username }}
{{ tweet.created_at.strftime('%B %d, %Y at %I:%M %p') }}
{% if tweet.user_id == session.user_id %}
Edit
Delete
{% endif %}
{{ tweet.content }}
{{ tweet.likes }}
Comment
{% endfor %}