{% extends 'careers/base.html' %}{% load i18n wagtailcore_tags %} {% block title %}{{ block.super }} | {% trans 'Jobs' %}{% endblock %} {% block content %}

{% trans "Jobs" %}

{% blocktrans trimmed %}Explore our current job openings and discover opportunities that match your passions. Use filters to tailor results and easily apply with your latest resume.{% endblocktrans %}

    {% for job in job_list %}
  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 %}