Commit 1fe33a0f by Valera Rozuvan Committed by polesye

Updating LTI template.

parent a950bb73
<%! import json %> <%! import json %>
<%! from django.utils.translation import ugettext as _ %> <%! from django.utils.translation import ugettext as _ %>
<div id="${element_id}" class="${element_class}" data-open_in_a_new_page="${json.dumps(open_in_a_new_page)}"> <div
id="${element_id}"
class="${element_class}"
data-open_in_a_new_page="${json.dumps(open_in_a_new_page)}"
>
## This form will be hidden. ## This form will be hidden.
## If open_in_a_new_page is false then, once available on the client, the LTI ## If open_in_a_new_page is false then, once available on the client, the
## module JavaScript will trigget a "submit" on the form, and the ## LTI module JavaScript will trigger a "submit" on the form, and the
## result will be rendered to the below iFrame. ## result will be rendered to the below iFrame.
## If open_in_a_new_page is true, then link will be shown, and by clicking on it, ## If open_in_a_new_page is true, then link will be shown, and by clicking
## LTI will pop up in new window. ## on it, LTI will pop up in new window.
<form <form
action="${launch_url}" action="${launch_url}"
name="ltiLaunchForm-${element_id}" name="ltiLaunchForm-${element_id}"
...@@ -28,7 +32,15 @@ ...@@ -28,7 +32,15 @@
% if launch_url and launch_url != 'http://www.example.com': % if launch_url and launch_url != 'http://www.example.com':
% if open_in_a_new_page: % if open_in_a_new_page:
<a href="#" class='link_lti_new_window'>${_(u'Click to view LTI in new window')}</a> <p>
<span class="description">
[LTI Display Name] (External resource)
</span>
<a href="#" class='link_lti_new_window'>
<i class="icon-external-link"></i>
${_('View resource in a new window')}
</a>
</p>
% else: % else:
## The result of the form submit will be rendered here. ## The result of the form submit will be rendered here.
<iframe <iframe
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment