Files
edx-platform/lms/templates/annotatable.html
2013-02-25 11:29:59 -05:00

22 lines
863 B
HTML

<div class="annotatable-wrapper" data-discussion-id="${discussion_id}">
<div class="annotatable-header">
% if display_name is not UNDEFINED and display_name is not None:
<div class="annotatable-title">${display_name}</div>
% endif
</div>
% if instructions_html is not UNDEFINED and instructions_html is not None:
<div class="annotatable-description">
Instructions
<a class="annotatable-toggle annotatable-toggle-instructions" href="javascript:void(0)">Hide Instructions</a>
</div>
<div class="annotatable-instructions">${instructions_html}</div>
% endif
<div class="annotatable-description">
Guided Discussion
<a class="annotatable-toggle annotatable-toggle-annotations" href="javascript:void(0)">Hide Annotations</a>
</div>
<div class="annotatable-content">${content_html}</div>
</div>