{% extends 'base.html' %} {% block title %}Edit Profile — CampusTalent{% endblock %} {% block content %}

Edit Your Profile

A complete profile helps you get discovered and builds trust

{% csrf_token %} {% if form.errors %}
Please fix the errors below.
{% endif %}
{% if form.instance.photo %} {% else %}
{{ request.user.first_name|first|upper }}{{ request.user.last_name|first|upper }}
{% endif %}
{{ form.photo }}
{{ form.bio }}
Tell the community about yourself, your interests, and what you're working on.
{{ form.skills }}
Comma-separated list: Python, UI Design, Video Editing
{{ form.experience_level }}
{{ form.is_available }} Yes, I'm open to collaboration
{{ form.github_url }}
{{ form.linkedin_url }}
{{ form.portfolio_url }}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}