{% extends "templates/base.html" %} {% block title %}{{ _('Job Openings') }}{% endblock %} {% block content %}
{% if allow_posting and jobs | length %} {{ _("Post a Job") }} {% endif %}
{{ _("{0}").format(title) }}
{{ _("{0}").format(subtitle) }}
{% if jobs | length %}
{% for job in jobs %}
{{ _(job.job_title) }}
{{ job.company_name }}
{{ job.location }}
{{ job.type }}
{{ frappe.utils.format_date(job.creation, "medium") }}
{% if loop.index != jobs | length %}
{% endif %} {% endfor %}
{% else %}
{{ _("No open jobs") }}
{{ _("There are no job openings at present.") }}
{% if allow_posting %} {{ _("Post a Job") }} {% endif %}
{% endif %}
{% endblock %}