16 lines
438 B
HTML
16 lines
438 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>File</th><th>AI Matched people</th></thead>
|
|
{% for e in entries %}
|
|
<tr><td>{{e.name}}</td><td>
|
|
{% for p in e.people %}
|
|
{{p.tag}}
|
|
{% endfor %}
|
|
</td></tr>
|
|
{% endfor %}
|
|
</tbody></table>
|
|
{% endblock main_content %}
|