diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..e82154a1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "frappe-ui"] + path = frappe-ui + url = https://github.com/pateljannat/frappe-ui diff --git a/frontend/src/components/Controls/Autocomplete.vue b/frontend/src/components/Controls/Autocomplete.vue index eb9a5b08..81f5358b 100644 --- a/frontend/src/components/Controls/Autocomplete.vue +++ b/frontend/src/components/Controls/Autocomplete.vue @@ -75,7 +75,7 @@ >
{{ _(\"Hey {0}\").format(doc.member_name) }}
\n{{ _('Your evaluation for the course {0} has been scheduled on {1} at {2} {3}.').format(title, frappe.utils.format_date(doc.date, \"medium\"), frappe.utils.format_time(doc.start_time, \"short\"), timezone) }}
\n{{ _(\"Your evaluator is {0}\").format(evaluator_name) }}\n
{{ _(\"Please prepare well and be on time for the evaluations.\") }}
\n", + "message": "{% set title = frappe.db.get_value(\"LMS Course\", doc.course, \"title\") %}\n{% set timezone = frappe.db.get_value(\"LMS Batch\", doc.batch, \"timezone\") %}\n{% set timezone = timezone if timezone else '' %}\n{% set evaluator_name = frappe.db.get_value(\"User\", doc.evaluator, \"full_name\") %}\n\n{{ _(\"Hey {0}\").format(doc.member_name) }}
\n{{ _('Your evaluation for the course {0} has been scheduled on {1} at {2} {3}.').format(title, frappe.utils.format_date(doc.date, \"medium\"), frappe.utils.format_time(doc.start_time, \"short\"), timezone) }}
\n{{ _(\"Your evaluator is {0}\").format(evaluator_name) }}
\n{{ _(\"Please prepare well and be on time for the evaluations.\") }}
\n", "message_type": "HTML", - "modified": "2024-07-10 15:51:03.429317", - "modified_by": "sayali@erpnext.com", + "modified": "2024-08-01 12:17:40.647724", + "modified_by": "jannat@frappe.io", "module": "LMS", "name": "Certificate Request Creation", "owner": "Administrator", diff --git a/lms/templates/emails/certificate_request_notification.html b/lms/templates/emails/certificate_request_notification.html new file mode 100644 index 00000000..6e4309bc --- /dev/null +++ b/lms/templates/emails/certificate_request_notification.html @@ -0,0 +1,4 @@ +{{ _("Hey {0}").format(member_name) }}
+{{ _('Your evaluation for the course {0} has been scheduled on {1} at {2} {3}.').format(title, date, start_time, timezone) }}
+{{ _("Your evaluator is {0}").format(evaluator) }}
+{{ _("Please prepare well and be on time for the evaluations.") }}