1
{% extends 'base.html' %}
2
{% block content %}
3
4
{% if edit_profile %}
5
<a href="/user/edit/">edit my profile</a>
6
{% endif %}
7
8
<br>
9
{{ view_profile_form.as_p }}
10
11
{% endblock %}