{% extends 'base.html' %} {% block title %} Jobs | Job Board {% endblock %} {% block content %}
{% if jobs %} {% for job in jobs %}
{{ job.title }}
{{ job.category|default:'General' }}

{{ job.description }}

  • Openings: {{ job.number_opening }}
  • Skills: {{ job.skill_required|default:'Any' }}
  • Posted by: {{ job.recruiter.user.display_name }}
{% if user.is_authenticated %} {% if user.user_type == 'jobseekers' %} {% if job.id in already_applied_ids %} {% else %} Apply {% endif %} {% elif user.user_type == 'recruiters' %} {% else %} Login to Apply {% endif %} {% else %} Login to Apply {% endif %}
{% endfor %} {% else %}
No jobs found.
{% endif %}
{% if is_paginated %}
{% endif %}
{% endblock %}