{% extends "base.html" %} {% block title %} {{ user.username|upper }} Profile {% endblock %} {% block content %}
Card image cap

{{ user.username|upper }}

About me

{% if user.about_me %}

{{ user.about_me|capitalize }}

{% else %}

Nothing to show us :( {% if user.username == g.user %}
Edit Profile {% endif %}

{% endif %}

Files (10)

{% if files %}
{% for file in files[::-1] %} {{ file.filename}} {% endfor %}
{% else %}

There are no files yet.

{% endif %}
{% endblock %}