brotherton-erpnext/erpnext/templates/generators/student_admission.html
Anupam Kumar c6592c880a
fix: Student Admission (#22255)
* Student Admission fix

* adding check for application

* adding check for application

* updating error message

* added date_diff for date comparision
2020-06-17 12:38:31 +05:30

28 lines
444 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 %}