brotherton-erpnext/erpnext/templates/generators/student_admission.html
2021-08-19 13:43:28 +05:30

28 lines
443 B
HTML

{% extends "templates/web.html" %}
{% block breadcrumbs %}
{% include "templates/includes/breadcrumbs.html" %}
{% endblock %}
{% block header %}
<h1>{{ title }}</h1>
{% endblock %}
{% block page_content %}
{%- if introduction -%}
<div>{{ introduction }}</div>
{% endif %}
{%- if doc.enable_admission_application -%}
<p>
<a class='btn btn-primary'
href='/student-applicant'>
{{ _("Apply Now") }}</a>
</p>
{% endif %}
{% endblock %}