{% 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
{% endmacro %} {% if frappe.session.user=='Guest' %}

You must first sign up and login to apply for certification.

Sign Up

{% else %} {% if all_certifications %}

Certification History

{% for certification in all_certifications %} {% endfor %}
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")) }}
{% 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 %}