{% extends 'base.html' %} {% load static %} {% load is_favorited %} {% block title %} All jobs {% endblock %} {% block content %} Find a job you will love Profession Location Search We have found {{ total_jobs }} jobs {% for job in jobs %} {{ 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 %} {% if page_obj.has_previous %} « {% else %} « {% endif %} {% for i in page_obj.paginator.page_range %} {% if page_obj.number == i %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if page_obj.has_next %} » {% else %} » {% endif %} {% endif %} {% endblock %} {% block javascripts %} {% endblock %}
{{ job.company_name }}
Posted {{ job.created_at|timesince }}