{% extends "templates/web.html" %} {% block page_content %}

{{ job_title }}

{{ company }} {{ " ยท " }} {{ posted_on }}
{%- if status == "Open" -%} {{ _("Apply Now") }} {%- else -%}
{{ _("Opening closed.") }}
{% endif %}
{%- if location -%}
{{ _("Location") }}
{{ location }}
{% endif %} {%- if department -%}
{{ _("Department") }}
{{ department }}
{% endif %} {%- if publish_salary_range -%}
{{ _("Salary Range") }}
{%- if lower_range -%} {{ frappe.format_value(frappe.utils.flt(lower_range) , currency=currency) }} {% endif %} {%- if lower_range and upper_range -%} {{ " - " }} {% endif %} {%- if upper_range -%} {{ frappe.format_value(frappe.utils.flt(upper_range) , currency=currency) }} {% endif %} / {{ salary_per.lower() }}
{% endif %} {%- if employment_type -%}
{{ _("Employment Type") }}
{{ employment_type }}
{% endif %} {%- if publish_applications_received -%}
{{ _("Applications Received") }}
{{ no_of_applications }}
{%- endif -%} {%- if (status == 'Open' and closes_on) or (status == 'Closed' and closed_on) -%}
{{ _("Closes On") if status == "Open" else _("Closed On") }}
{{ frappe.format_date(closes_on if status == "Open" else closed_on, "d MMM, YYYY") }}
{% endif %}
{%- if description -%}

{{ description }}

{% endif %}
{%- if status == "Open" -%} {{ _("Apply Now") }} {%- else -%}
{{ _("Opening closed.") }}
{% endif %}
{% endblock page_content %}