32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<%! from django.utils.translation import gettext as _ %>
|
|
|
|
<div class="annotatable-wrapper">
|
|
<div class="annotatable-header">
|
|
% if display_name is not UNDEFINED and display_name is not None:
|
|
<h3 class="hd hd-3 annotatable-title">${display_name | h}</h3>
|
|
% endif
|
|
</div>
|
|
|
|
% if instructions_html is not UNDEFINED and instructions_html is not None:
|
|
<div class="annotatable-section shaded">
|
|
<div class="annotatable-section-title">
|
|
${_("Instructions")}
|
|
<a class="annotatable-toggle annotatable-toggle-instructions expanded" href="javascript:void(0)">${_("Collapse Instructions")}</a>
|
|
</div>
|
|
<div class="annotatable-section-body annotatable-instructions">
|
|
${instructions_html}
|
|
</div>
|
|
</div>
|
|
% endif
|
|
|
|
<div class="annotatable-section">
|
|
<div class="annotatable-section-title">
|
|
${_("Guided Discussion")}
|
|
<a class="annotatable-toggle annotatable-toggle-annotations" href="javascript:void(0)">${_("Hide Annotations")}</a>
|
|
</div>
|
|
<div class="annotatable-section-body annotatable-content">
|
|
${content_html}
|
|
</div>
|
|
</div>
|
|
</div>
|