{% extends "job_offers/base.html" %} {% load i18n crispy_forms_tags url_replace %} {% block job_offer_content %}
{% crispy form form_helper %}
{% if object_list %} {% for content in object_list %} {% endfor %}
{% trans "Type" %} {% trans "Country" %} {% trans "Contract" %} {% trans "More details" %}
{% for cat in content.categories.all %} {{ cat }} {% endfor %}
{{ content.location }} {{ content.short_description|safe }} {% trans "Details" %}
{% if is_paginated %} {% endif %} {% else %}

{% trans "No job offers found" %}

{% endif %}
{% endblock %}