{% extends "profilePortal.html" %} {% comment %} {% extends "base.html" %} {% endcomment %} {% block content %} {%for user in users%}

Basic Information


{{user.Username}}

{{user.name}}

{{user.nickName}}

{{user.Email}}

{{user.phoneNumber}}

{{user.Address}}

Education Experiences


{%for education in educations%} {%if education.Username == user.Username%}
{%csrf_token%}

{{education.title}} In {{education.major}}


{{education.school}}

{{education.duration}}


{%endif%} {%endfor%}

Working Experiences


{%for work in works%} {%if work.Username == user.Username%}
{%csrf_token%}

{{work.job}}


{{work.years}}

{{work.company}}

{{work.comment}}


{%endif%} {%endfor%}

Skills

Add Skill
{%for skill in skills%}
{% csrf_token %}

{{skill|safe}}

{%endfor%}

Update Profile


{%csrf_token%}

Active Applications


{%for application in applications%} {%if application.username == user.Username%}
Application for {{application.title}} at Company Name Here

{{application.jobtype}}

{{application.description}}

{{application.username}}

{{application.status}}


{%endif%} {%endfor%}
{%endfor%} {% endblock content %}