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 %}
|
2016-12-19 17:06:26 +05:30
|
|
|
<p style='margin-top: 30px'>
|
2016-03-28 11:30:05 +05:30
|
|
|
<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>
|
2016-03-28 11:30:05 +05:30
|
|
|
</p>
|
2016-03-02 12:53:19 +05:30
|
|
|
|
|
|
|
{% endblock %}
|