{% extends 'dash-back.html' %} {% block title %} Profile | Job Board {% endblock %} {% block dash %}

{{ user.display_name|default:user.username }}

{{ user.email }}

{{ user.user_type }}
Profile Information
{% if user.user_type == 'recruiters' %}
Company Name {{ profile.company_name|default:'Not provided' }}
Website {% if profile.company_website %} {{ profile.company_website }} {% else %} Not provided {% endif %}
Phone Number {{ profile.company_phone|default:'Not provided' }}
Location {{ profile.location|default:'Not provided' }}
{% else %}
Job Title {{ profile.title|default:'Not provided' }}
Skills {{ profile.skill|default:'Not provided' }}
Experience {% if profile.years_of_experience is not None %} {{ profile.years_of_experience }} year{% if profile.years_of_experience != 1 %}s{% endif %} {% else %} Not provided {% endif %}
Phone Number {{ profile.phone|default:'Not provided' }}
Resume {% if profile.resume %} View Resume {% else %} Not uploaded {% endif %}
{% endif %}
{% if user.is_jobseeker %}
About Me
{% if profile.bio %}

{{ profile.bio }}

{% else %}

No bio added yet. Click "Edit Profile" to add information about yourself.

{% endif %}
{% endif %}
{% endblock %}