{# This snippet shows a table using the list user_tests as input #} {% if user_test_count == 0 %}

No user tests found.

{% else %} {% if user_test_count > user_tests|length %}
Pages: {% for i in range(user_test_pages) %} {% if i != user_test_page %} {{ i + 1 }} {% else %} {{ i + 1 }} {% endif %} {% endfor %}
{% endif %} {% for ut in user_tests|sort(attribute="timestamp")|reverse %} {% include "fragments/user_test_row.html" %} {% endfor %}
Time User Task Status User input Files
{% endif %}