{% extends "lms/templates/lms_base.html" %} {% block title %} {{ title }} {{ _("Billing") }} {% endblock %} {% block page_content %}
{% endblock %} {% macro Header() %}
{{ _("Order Details") }}
{{ _("Enter the billing information to complete the payment.").format(module) }}
{% endmacro %} {% macro Details() %}
{% set label = "Course" if module == "course" else "Batch" %} {{ _(label) }} : {{ title }}
{{ _("Total Price: ") }} {{ frappe.utils.fmt_money(amount, 2, currency) }}
{% if gst_applied %} {{ _("18% GST included") }} {% endif %}
{% endmacro %} {% macro BillingDetails() %}
{{ _("Billing Details") }}
{% endmacro %} {%- block script %} {{ super() }} {% endblock %}