{% extends 'base.html' %} {% load static %} {% block title %}Profile - {{ user.get_full_name }}{% endblock %} {% block content %}

My Profile

{% if user.profile_picture %} {{ user.get_full_name }} {% else %}
{{ user.first_name|slice:':1' }}{{ user.last_name|slice:':1' }}
{% endif %}
{% if user.profile_picture %} {% endif %}
{% csrf_token %}
{{ form.first_name }}
{{ form.last_name }}
{{ form.email }}
Change Password
{% endblock %}