16 lines
660 B
HTML
16 lines
660 B
HTML
<%! from django.utils.translation import gettext as _ %>
|
|
<%page expression_filter="h"/>
|
|
|
|
<div class="discussion-module" data-discussion-id="${discussion_id}">
|
|
<p>
|
|
<span class="discussion-preview">
|
|
<span class="icon fa fa-comment"/>
|
|
${_("To view live discussions, click Preview or View Live in Unit Settings.")}<br />
|
|
${_("Discussion ID: {discussion_id}").format(discussion_id=discussion_id)}
|
|
% if not is_visible:
|
|
<br /><b>${_('The discussion block is disabled for this course as it is not using a compatible discussion provider.')}</b>
|
|
% endif
|
|
</span>
|
|
</p>
|
|
</div>
|