{% extends 'base.html' %} {% load static %} {% block title %}Job List{% endblock title %} {% block content %} {% block styles %} {% endblock styles %}

Job List

{% if employers %} {% for employer in page_obj %} {% endfor %}
Business Name Business Category Type Location and Region Job Offered Status Actions
{{ employer.business_name }} {{ employer.business_category }} {{ employer.business_type }} {{ employer.location }} {{ employer.region }} {{ employer.fields_for_jobs }} {% if employer.status == "Open" %} Open {% else %} Close {% endif %} {% if employer.status == "Open" %} {% if request.user.user_type == "job_seeker" %} Fill Job Application Form {% else %} Must be Candidate {% endif %} {% else %} Closed {% endif %}
{% else %}

No employers available at the moment.

{% endif %}
{% endblock content %}