brotherton-erpnext/erpnext/templates/generators/job_opening.html
Kanchan Chauhan 704f248952 Changes 2
2016-04-20 16:24:24 +05:30

23 lines
409 B
HTML

{% extends "templates/web.html" %}
{% block breadcrumbs %}
{% include "templates/includes/breadcrumbs.html" %}
{% endblock %}
{% block header %}
<h1>{{ job_title }}</h1>
{% endblock %}
{% block page_content %}
{%- if description -%}
<div>{{ description }}</div>
{% endif %}
<p>
<a class='btn btn-primary'
href='/job_application?job_title={{ doc.name }}'>
{{ _("Apply Now") }}</a>
</p>
{% endblock %}