{% extends "templates/base.html" %} {% from "www/hackathons/macros/card.html" import null_card %} {% block title %}{{ _('Job Openings') }}{% endblock %} {% block content %} {% set allow_posting = frappe.db.get_single_value("Job Settings", "allow_posting") %}
{% if allow_posting and jobs | length %} {{ _("Post a Job") }} {% endif %}
{{ _("Job Openings") }}
{% if jobs | length %}
{% for job in jobs %}
{{ _(job.type) }}
{{ job.location }}
{{ _(job.job_title) }}
{{ job.company_name }}
Posted on: {{ frappe.utils.format_date(job.creation, "medium") }}
{% endfor %}
{% else %}
{{ _("No open positions") }}
{{ _("There are no job openings available.") }}
{% if allow_posting %} {{ _("Post a Job") }} {% endif %}
{% endif %}
{% endblock %}