{% extends "templates/base.html" %} {% 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 %}
{% set show_edit_link = False %} {% include "school/templates/job_card.html" %}
{% endfor %}
{% else %}
{{ _("No open jobs") }}
{{ _("There are no job openings at present.") }}
{% if allow_posting %} {{ _("Post a Job") }} {% endif %}
{% endif %}
{% endblock %}