{% extends 'base.html' %} {% load static %} {% block content %}
{% if user.is_employee %} {% if jobs %}

My wishlist

{% for job in jobs %}

{{ job.title }}

{% if job.job_type == 'full_time' %} Full Time {% elif job.job_type == 'part_time'%} Part Time {% elif job.job_type == 'freelance'%} Freelance {% elif job.job_type == 'internship'%} Internship {% elif job.job_type == 'temporary'%} Temporary {% endif %}
{{ job.location }}
Apply Job {% if job.id in wish_list %} {% else %} {% endif %}
{% endfor %} {% else %}

Your wishlist is empty!

{% endif %} {% else %}
Recently Added Jobs

Your are not an employee!

{% endif %}
{% if user.is_authenticated %}
{% if is_paginated %}
    {% if page_obj.has_previous %}
  • <
  • {% else %}
  • <
  • {% endif %} {% for i in paginator.page_range %} {% if page_obj.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if page_obj.has_next %}
  • >
  • {% else %}
  • >
  • {% endif %}
{% endif %}
{% endif %}
{% endblock %}