{% extends 'base.html' %} {% block title %}{{profile.username}}'s Profile{% endblock %} {% block sidebar %} {% endblock %} {% block content %}
{% if request.user.is_authenticated %}

{{profile.username}}'s Profile

{% if profile.username == request.user.username %} Edit user profile {% endif %}

{{profile.username}}'s Playlists

{% for i in playlists %} {{i.playlist_name}} {% endfor %}
{% else %}

Please log in to your account to view {{profile.username}}'s profile.

{% endif %} {% endblock %}