{% extends 'base.html' %} {% block body %}
{% for i in jobs %}

Title: {{i.title}}

Avatar

Vacancy: {{i.openings}}

Skill : {{i.skills}}

Description : {{i.description}}

{% if i.category == 'full_time' %}

Full Time

{% endif %} {% if i.category == 'part_time' %}

Part Time

{% endif %} {% if request.user.user_type == 'seeker' %} Appy Job {% endif %}
{% endfor %} {% endblock body %}