{% extends "base/base.html" %} {% load static %} {% block page_heading %} Question Tags {% endblock page_heading %} {% block main_content %}
Tagging questions is a beta feature intended to support more detailed analysis during or after an assessment. For example, one might tag questions according to their learning objective, format, or topic.
{% if error_message %}Question Index | Question Label | Tags |
---|---|---|
{{ index }} | {{ label_html|safe }} |
{{ qt.tag.tag_name }}
{% endfor %}
{% endif %}
{% endfor %}
{% for question_tag in question_tags %}
{% if question_tag.question_index == index %}
{% for qt in question_tag.questiontaglink_set.all %}
|
Tag Name | Tag Description (public) | Confidential Information (private) | Help Threshold | Help Resources |
---|---|---|---|---|
{{ tag.tag_name }} | {{ tag.description }} | {{ tag.confidential_info }} | {{ tag.help_threshold }} | {% if tag.help_resources %} Present {% else %} Not Present {% endif %} |