{% load i18n %} {% load django_markup %}
{% if block_count > 0 %} {% if max_count == -1 %}

{% filter force_escape %} {% blocktrans count num_selected=block_count %} Learners will see the selected component: {% plural %} Learners will see all of the {{ num_selected }} selected components, in random order: {% endblocktrans %} {% endfilter %}

{% else %}

{% filter force_escape %} {% blocktrans with max_count=max_count count num_selected=block_count %} Learners will see the selected component: {% plural %} Learners will see {{ max_count }} of the {{ num_selected }} selected components: {% endblocktrans %} {% endfilter %}

{% endif %}
    {% for block in blocks %}
  1. {{ block.display_name }}
  2. {% endfor %}

{% blocktrans trimmed asvar view_msg %} Press {link_start}View{link_end} to preview, sync/update, and/or remove the selected components. {% endblocktrans %} {% interpolate_html view_msg link_start=view_link|safe link_end=''|safe %}

{% blocktrans trimmed asvar edit_msg %} Press {link_start}Edit{link_end} to configure how many will be shown and other settings. {% endblocktrans %} {% interpolate_html edit_msg link_start=''|safe link_end=''|safe %}

{% else %}

{% trans "You have not selected any components yet." as tmsg %}{{tmsg|force_escape}}

{% endif %}