{% if not rows %}

You have not yet created any tables.

{% else %}
    {% for row in rows %}
  • {{ row.text }} {{ "{:,}".format(row.count) }}
  • {% endfor %}
{% endif %}