{% comment %} For displaying a list of objects in a chart within a card. Expects: * card_title - The text for the card's heading. * object_list - A list/QuerySet of objects. * score_attr - The name of the attribute on each object that contains the score for the chart. e.g. 'num_visits' * name_attr - Optional. The name of the attribute on each object to be used for its display value. Default is 'name'. * in_card - Optional. Boolean, default is False. Is this displayed within a card element? * use_cite - If True, then wrap the name of each object in tags. Default: False. {% endcomment %} {% if object_list %}

{{ card_title }}

{% include 'spectator_core/includes/chart.html' with object_list=object_list score_attr=score_attr name_attr=name_attr|default:None in_card=True use_cite=use_cite|default_if_none:False only %}
{% endif %}