{% 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 %} {% else %}

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

{% endif %}
{% endblock %}