{% extends 'base.html' %} {% load static %} {% block content %}

Profile Settings

{% csrf_token %}
{% if user.profile.profile_image %} Profile Picture {% else %}
{{ user.first_name|first|upper }}
{% endif %}
{{ form.profile_image }}
{{ form.name }} {{ form.name.errors }}
{{ form.email }} {{ form.email.errors }}
{{ form.phone_number }} {{ form.phone_number.errors }}
{{ form.bio }} {{ form.bio.errors }}

Notification Preferences

{{ form.email_notifications }}
{{ form.push_notifications }}
{% endblock %}