{% if dataset.num_rows > max_items %}

Note: only the first {{ "{:,}".format(max_items) }} of {{ "{:,}".format(dataset.num_rows) }} total items of this dataset are shown in this preview (~{{ ((max_items / dataset.num_rows) * 100)|round(0)|int }}%)

{% endif %} {% for row in rows %} {% set outer_loop = loop %} {% for cell in row %} {{ cell }} {% endfor %} {% endfor %}