2016-09-15 14:48:13 +05:30
|
|
|
|
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
|
2016-09-15 16:44:25 +05:30
|
|
|
<h1>{{ title }}</h1>
|
2016-09-15 14:48:13 +05:30
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
|
|
|
|
{%- if introduction -%}
|
|
|
|
<div>{{ introduction }}</div>
|
2021-08-19 13:41:10 +05:30
|
|
|
{% endif %}
|
2016-09-15 14:48:13 +05:30
|
|
|
|
2020-06-17 12:38:31 +05:30
|
|
|
{%- if doc.enable_admission_application -%}
|
2016-09-15 14:48:13 +05:30
|
|
|
<p>
|
|
|
|
<a class='btn btn-primary'
|
2020-06-17 12:38:31 +05:30
|
|
|
href='/student-applicant'>
|
2016-09-15 14:48:13 +05:30
|
|
|
{{ _("Apply Now") }}</a>
|
|
|
|
</p>
|
2016-09-15 15:36:14 +05:30
|
|
|
{% endif %}
|
2016-09-15 14:48:13 +05:30
|
|
|
|
|
|
|
{% endblock %}
|