mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 14:39:19 +00:00
Merge branch 'develop' of github.com:frappe/erpnext into version-13-beta-pre-release
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
{% extends "templates/web.html" %}
|
||||
|
||||
{% block breadcrumbs %}
|
||||
{% include "templates/includes/breadcrumbs.html" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block header %}<h1>{{ name }}</h1>{% endblock %}
|
||||
|
||||
{% block page_content %}
|
||||
|
||||
@@ -13,10 +13,21 @@
|
||||
{%- if description -%}
|
||||
<div>{{ description }}</div>
|
||||
{% endif %}
|
||||
|
||||
{%- 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 %}
|
||||
|
||||
<p style='margin-top: 30px'>
|
||||
<a class='btn btn-primary'
|
||||
{%- 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'
|
||||
href='/job_application?new=1&job_title={{ doc.name }}'>
|
||||
{{ _("Apply Now") }}</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user