← Return
{{ user.username }}
{% if user.bio %}
{{ user.bio }}
{% else %}
This user has not provided a bio.
{% endif %}
{# Below is the movie list (this is comment) #}
{{ user.username }}'s Watchlist ({{ movies|length }}):
{% for movie in movies %}
- {{ movie.name }} - {{ movie.year }}
{% endfor %}