2016-03-02 12:53:19 +05:30
|
|
|
{% 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 14:52:23 +05:30
|
|
|
{%- if description -%}
|
2016-03-02 12:53:19 +05:30
|
|
|
<div>{{ description }}</div>
|
2016-04-15 14:52:23 +05:30
|
|
|
{% endif %}
|
2021-01-15 13:56:03 +05:30
|
|
|
|
|
|
|
{%- 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 17:06:26 +05:30
|
|
|
<p style='margin-top: 30px'>
|
2021-01-15 13:56:03 +05:30
|
|
|
{%- 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 17:58:41 +05:30
|
|
|
href='/job_application?new=1&job_title={{ doc.name }}'>
|
2016-03-02 12:53:19 +05:30
|
|
|
{{ _("Apply Now") }}</a>
|
2021-01-15 13:56:03 +05:30
|
|
|
{% endif %}
|
2016-03-28 11:30:05 +05:30
|
|
|
</p>
|
2016-03-02 12:53:19 +05:30
|
|
|
|
|
|
|
{% endblock %}
|