{% extends "base_list_view.html" %} {% block extra_title %} Vacancies {% if object %} - {{ object.title }} {% else %} {% if current_category %} - {{ current_category.title }} {% endif %} {% endif %} {% endblock extra_title %} {% block breadcrumb %}
  • Vacancies
  • {% block extra_breadcrumb %} {% endblock extra_breadcrumb %} {% endblock %} {% block h1_title %} Vacancies {% endblock h1_title %} {% block h2_title %}

    Vacancies List

    {{ block.super }} {% endblock h2_title %} {% block app_content %} {% for vacancy in object_list %}
  • {% include "includes/render_list_object.html" with published=vacancy.created_at obj=vacancy%}
  • {% empty %}

    No vacancies available.

    {% endfor %} {% endblock app_content %}