2016-03-02 07:23:19 +00:00
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
<h1>{{ job_title }}</h1>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
|
2016-04-15 09:22:23 +00:00
|
|
|
{%- if description -%}
|
2016-03-02 07:23:19 +00:00
|
|
|
<div>{{ description }}</div>
|
2016-04-15 09:22:23 +00:00
|
|
|
{% endif %}
|
2021-01-15 08:26:03 +00:00
|
|
|
|
|
|
|
{%- if publish_salary_range -%}
|
|
|
|
<div><b>{{_("Salary range per month")}}: </b>{{ frappe.format_value(frappe.utils.flt(lower_range), currency=currency) }} - {{ frappe.format_value(frappe.utils.flt(upper_range), currency=currency) }}</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-12-19 11:36:26 +00:00
|
|
|
<p style='margin-top: 30px'>
|
2021-01-15 08:26:03 +00:00
|
|
|
{%- if job_application_route -%}
|
|
|
|
<a class='btn btn-primary'
|
|
|
|
href='/{{job_application_route}}?new=1&job_title={{ doc.name }}'>
|
|
|
|
{{ _("Apply Now") }}</a>
|
|
|
|
{% else %}
|
|
|
|
<a class='btn btn-primary'
|
2017-02-10 12:28:41 +00:00
|
|
|
href='/job_application?new=1&job_title={{ doc.name }}'>
|
2016-03-02 07:23:19 +00:00
|
|
|
{{ _("Apply Now") }}</a>
|
2021-01-15 08:26:03 +00:00
|
|
|
{% endif %}
|
2016-03-28 06:00:05 +00:00
|
|
|
</p>
|
2016-03-02 07:23:19 +00:00
|
|
|
|
|
|
|
{% endblock %}
|