brotherton-erpnext/erpnext/templates/generators/job_opening.html
2016-03-28 11:30:05 +05:30

22 lines
375 B
HTML

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