{% extends 'careers/base.html' %}{% load i18n wagtailcore_tags %} {% block title %}{{ block.super }} | {{ category.title }}{% endblock %} {% block content %}
{% include 'careers/components/breadcrumbs.html' %}

{{ category.title }}

{{ category.description|richtext }}
    {% for job in children.specific %}
  1. {% trans 'View' %}

    {{ job.title }}

    {{ job.description }}

    {% if job.is_remote %} {% endif %} {% if job.country %} {% endif %} {{ job.latest_revision_created_at|date:'Y/m/d' }}
  2. {% endfor %}
{% include 'careers/components/pagination.html' %}
{% endblock %}