{% from 'components/big-number.html' import big_number %} {% macro pill( title, items=[], current_value=None ) %} {{title}} {% for label, option, link, count in items %} {% if current_value == option %} {% else %} {% endif %} {{ big_number(count, smaller=True) }} {{ label }} {% if current_value == option %} {% else %} {% endif %} {% endfor %} {% endmacro %}