{% extends "templates/web.html" %} {% block title %} ERPNext Certification {% endblock %} {% block page_content %} {% macro show_currency_options() %}
Certification price is 20,000 INR / 300 USD.
You must first sign up and login to apply for certification.
Certification Id | From | To | Amount |
---|---|---|---|
{{ certification['name'] }} | {{ frappe.format_date(certification['from_date']) }} | {{ frappe.format_date(certification['to_date']) }} | {{ frappe.utils.fmt_money(certification['amount'],currency=frappe.db.get_value("Currency",certification['currency'],"symbol")) }} |
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 %}