{% extends 'base.html' %} {% block title %}Edit Profile{% endblock %} {% block content %}
{% if request.user.is_authenticated %} {% if user.username == request.user.username %}

Edit Profile

{% csrf_token %} {{ form.as_p }}
{% else %}

You can only edit your own user profile. Go to your own profile page.

{% endif %} {% else %}

Please log in to your account to edit your profile.

{% endif %}
{% endblock %}