{% extends 'base.html' %} {% load static %} {% load is_favorited %} {% block title %} All jobs {% endblock %} {% block content %}

Find a job you will love

We have found {{ total_jobs }} jobs

{% for job in jobs %}
company image

{{ job.title }}

{{ job.company_name }}

{% for tag in job.tags.all %} {{ tag.name }} {% endfor %}
{{ job.location }}

Posted {{ job.created_at|timesince }}

{% if user.is_authenticated and request.user.role == 'employee' %}
{% is_favorited job as is_already_favorited %} {% if is_already_favorited %} {% else %} {% endif %}
{% endif %}
{% endfor %} {% if is_paginated %}
{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}