Skip to content
Snippets Groups Projects
user_task_complete_email.txt 827 B
Newer Older
<%! from django.utils.translation import ugettext as _ %>

% if detail_url:

bmedx's avatar
bmedx committed
${_("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)}
bmedx's avatar
bmedx committed
${_("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)}

% if olx_validation_errors:

${_("Here are some validations we found with your course content.")}
${_("Errors:")}
% for error in olx_validation_errors.get('errors'):
  * ${error}
${_("Warnings:")}
% for warning in olx_validation_errors.get('warnings'):
  * ${warning}
% endfor