<%! import json %> <%! from django.utils.translation import ugettext as _ %>

## Translators: "External resource" means that this learning module is hosted on a platform external to the edX LMS ${display_name} ${title_postscript}

% if has_score and weight:
% if module_score is not None: ## Translators: "points" is the student's achieved score on this LTI unit, and "total_points" is the maximum number of points achievable. (${_("{points} / {total_points} points").format(points="{:0.2f}".format(module_score), total_points="{:0.2f}".format(weight))}) % else: ## Translators: "total_points" is the maximum number of points achievable on this LTI unit (${_("{total_points} points possible").format(total_points="{:0.2f}".format(weight))}) % endif
% endif
${instruction_text}
% if launch_url and launch_url != 'http://www.example.com' and not hide_launch: % if open_in_a_new_page: % else: ## The result of the form submit will be rendered here. % endif % elif not hide_launch:

${_('Please provide launch_url. Click "Edit", and fill in the required fields.')}

%endif % if has_score and comment: % if grader_feedback_label:

${grader_feedback_label}

% endif
## sanitized with bleach in view ${comment}
% endif