{% extends "results/question" %} {% load result_tags %} {% block answers %} {% assign_to tag_limit 10 %} {% tag_histogram uncommon question.list as taghist limit tag_limit %} {% include "results/tags" %} {% regroup question.list|dictsort:"gen_uncommon_tags" by gen_uncommon_tags as ans_groups %} {% for answer in ans_groups|dictsortreversed:"list.__len__" %} {% block answer %}
({% widthratio answer.list|length question.list|length 100 %}%) {% block rankset %}{% if answer.list.0.rank %} {% regroup answer.list|dictsort:"rank" by rank as ranked %} ({% for ranking in ranked %} {{ranking.grouper}}: {{ranking.list|length}}{% if not forloop.last %},{% endif %} {% endfor %}) {% endif %}{% endblock %}
{% endblock %} {% endfor %} {% endblock %}