* fix: refactor MakoService to allow specifying namespace per template (#33061) * fix: instr. dashboard broken by bulk email reusing HtmlBlock studio_view * fix: lint issue from unused import
16 lines
756 B
HTML
16 lines
756 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import ngettext %>
|
|
<div class="wrapper-xblock-message">
|
|
<div class="xblock-message information">
|
|
<p>
|
|
<span class="message-text">
|
|
${ngettext(
|
|
'Showing all matching content eligible to be added into {display_name}. Each student will be assigned {max_count} component drawn randomly from this list.',
|
|
'Showing all matching content eligible to be added into {display_name}. Each student will be assigned {max_count} components drawn randomly from this list.',
|
|
max_count
|
|
).format(max_count=max_count, display_name=display_name)}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</div>
|