erpnext/www/payment_setup_certification.html
{% extends "templates/web.html" %} {% block title %} ERPNext Certification {% endblock %} {% block page_content %} {% macro show_currency_options() %}
Certification price is 20,000 INR / 300 USD.
USD
INR
Next {% endmacro %} {% if frappe.session.user=='Guest' %}
You must first sign up and login to apply for certification.
{% else %} {% if all_certifications %}
| Certification Id | From | To | Amount |
|---|---|---|---|
| {% for certification in all_certifications %} | {{ certification['name'] }} | {{ frappe.format_date(certification['from_date']) }} | {{ frappe.format_date(certification['to_date']) }} |
| {% endfor %} |
{% endif %} {% if not all_certifications %} {{ show_currency_options() }} {% elif all_certifications and (frappe.utils.getdate(all_certifications[0]['to_date']) < frappe.utils.getdate(frappe.utils.nowdate())) %}
Your certification has expired. Click on the button below to start a new certification.
{{ show_currency_options() }} {% elif all_certifications and (frappe.utils.getdate(frappe.utils.add_days(all_certifications[0]['to_date'], -30)) < frappe.utils.getdate(frappe.utils.nowdate()))%}
Your certification is due to expire soon. Click on the button below to start a new certification.
{{ show_currency_options() }} {% endif %} {% endif %} {% endblock %}