{% extends "results/question" %} {% load result_tags %} {% block answers %} {% assign_to tag_limit 10 %} {% tag_histogram common question.list as taghist limit tag_limit %} {% include "results/tags" %} {% for answer in question.list %} {% block answer %}
{{answer|escape}} {% union_set taghist|dict_val_list:"tag" answer.gen_tags as ans_tags %} {% if ans_tags %}
{{ ans_tags|join:" " }}{% endif %}
{% endblock %} {% endfor %} {% endblock %}