10 lines
685 B
HTML
10 lines
685 B
HTML
{% set title = frappe.db.get_value("LMS Course", doc.course, "title") %}
|
|
{% set timezone = frappe.db.get_value("LMS Batch", doc.batch, "timezone") %}
|
|
{% set timezone = timezone if timezone else '' %}
|
|
{% set evaluator_name = frappe.db.get_value("User", doc.evaluator, "full_name") %}
|
|
|
|
<p> {{ _("Hey {0}").format(doc.member_name) }} </p>
|
|
<p> {{ _('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) }}</p>
|
|
<p> {{ _("Your evaluator is {0}").format(evaluator_name) }}
|
|
<p> {{ _("Please prepare well and be on time for the evaluations.") }} </p>
|