{% extends "base.html" %} {% block body %}

Statistics

Table size

{{ total_stats.to_html(index=False) | replace('dataframe', 'table table-sm table-bordered table-hover') | safe }}

User data

{{ user_stats.to_html(index=False) | replace('dataframe', 'table table-sm table-bordered table-hover') | safe }}

Evaluation data

{{ eval_stats.to_html(index=False) | replace('dataframe', 'table table-sm table-bordered table-hover') | safe }}
{% endblock %}