{% 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 %}
{{ error_message }}
{% endif %}

Questions

Download Tag-Question Linking as CSV {% for index, label_str, label_html in question_label_triple %} {% endfor %}
Question Index Question Label Tags
{{ index }} {{ label_html|safe }}
{% for question_tag in question_tags %} {% if question_tag.question_index == index %} {% for qt in question_tag.questiontaglink_set.all %} {{ qt.tag.tag_name }}
{% csrf_token %}
{% endfor %} {% endif %} {% endfor %}
Download Tags as CSV

Manage Tags

{% for tag in tags %} {% endfor %}
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 %}
{% include "Questiontags/modal_forms.html" %} {% endblock main_content %}