12 lines
372 B
HTML
12 lines
372 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
<h3>Basic AI stats</h3>
|
|
<table class="table table-striped table-sm">
|
|
<tbody><thead class="thead-light"><tr><th>Person (tag)</th><th>Number of files matched</th></thead>
|
|
{% for s in stats %}
|
|
<tr><td>{{s[0]}}</td><td>{{s[1]}}</td></tr>
|
|
{% endfor %}
|
|
</tbody></table>
|
|
{% endblock main_content %}
|