Files
edx-platform/cms/templates/emails/user_task_complete_email.txt
Awais Jibran ad7f6019fe Integrate "olxcleaner" with course import (#27164)
* Integrating olxcleaner in course import

* Adding toggle removal date and addressing pylint issues.
2021-03-31 13:26:14 +05:00

25 lines
705 B
Plaintext

<%! from django.utils.translation import ugettext as _ %>
% if detail_url:
${_("Your {task_name} task has completed with the status '{task_status}'. Use this URL to view task details or download any files created: {detail_url}").format(task_name=task_name, task_status=task_status, detail_url=detail_url)}
% else:
${_("Your {task_name} task has completed with the status '{task_status}'. Sign in to view the details of your task or download any files created.").format(task_name=task_name, task_status=task_status)}
% endif
% if olx_validation_errors:
${_("Here are some validation errors we found with your course content.")}
% for error in error_report:
${error}
% endfor
% else:
% endif